summaryrefslogtreecommitdiffstats
path: root/chromium/ash/public/mojom/assistant_state_controller.mojom
blob: 42b924f074be95883ed9a58760824221c9cd1515 (plain)
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
// 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.

module ash.mojom;

import "ash/public/mojom/voice_interaction_controller.mojom";

// Allows observing changes to Assistant status and settings.
interface AssistantStateObserver {
  // Called when Assistant state changes.
  OnAssistantStatusChanged(VoiceInteractionState state);

  // Called when assistant feature allowed state has changed.
  OnAssistantFeatureAllowedChanged(AssistantAllowedState state);

  // Called when Google Play Store is enabled/disabled.
  OnArcPlayStoreEnabledChanged(bool enabled);

  // Called when locale is changed in pref. The locale is in the format can be
  // "en-US" or simply "en". When locale is not set in pref, it returns empty
  // string.
  OnLocaleChanged(string locale);

  // Called when locked full screen state has changed.
  OnLockedFullScreenStateChanged(bool enabled);
};

// Interface for ash client (Assistant service) to connect to state controller,
// which notifies changes of Assistant status and settings.
interface AssistantStateController {
  // Add an observer.
  AddMojomObserver(AssistantStateObserver observer);
};