forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassistant_state_controller.h
35 lines (25 loc) · 1.09 KB
/
assistant_state_controller.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_ASSISTANT_ASSISTANT_STATE_CONTROLLER_H_
#define ASH_ASSISTANT_ASSISTANT_STATE_CONTROLLER_H_
#include "ash/ash_export.h"
#include "ash/public/cpp/assistant/assistant_state.h"
#include "ash/public/cpp/session/session_observer.h"
#include "base/macros.h"
namespace ash {
// Provide access of Assistant related prefs and states to the clients.
class ASH_EXPORT AssistantStateController : public AssistantState,
public SessionObserver {
public:
AssistantStateController();
AssistantStateController(const AssistantStateController&) = delete;
AssistantStateController& operator=(const AssistantStateController&) = delete;
~AssistantStateController() override;
private:
// SessionObserver:
void OnActiveUserPrefServiceChanged(PrefService* pref_service) override;
ScopedSessionObserver session_observer_;
};
} // namespace ash
#endif // ASH_ASSISTANT_ASSISTANT_STATE_CONTROLLER_H_