HomeSort by relevance Sort by last modified time
    Searched defs:Observer (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/chromium/chrome/browser/policy/
cloud_policy_identity_strategy.h 24 class Observer {
26 virtual ~Observer() {}
40 void AddObserver(Observer* obs);
41 void RemoveObserver(Observer* obs);
86 ObserverList<Observer, true> observer_list_;
configuration_policy_provider.h 27 class Observer {
29 virtual ~Observer() {}
85 virtual void AddObserver(ConfigurationPolicyProvider::Observer* observer) = 0;
87 ConfigurationPolicyProvider::Observer* observer) = 0;
103 : ConfigurationPolicyProvider::Observer {
108 ConfigurationPolicyProvider::Observer* observer);
110 // ConfigurationPolicyProvider::Observer implementation
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/
font_settings_fonts_list_loader.h 20 // Any clients of this class must implement this observer interface in
22 class Observer {
27 virtual ~Observer() {}
30 // Pass in an observer, often 'this'.
31 explicit FontSettingsFontsListLoader(Observer* observer);
37 // Start loading of the fonts list. The observer will be notified when this
41 // Set the observer. This class does not take ownership of the observer.
42 // The observer can be NULL
    [all...]
  /libcore/luni/src/main/java/java/util/
Observer.java 22 * {@code Observer} is the interface to be implemented by objects that
27 public interface Observer {
  /external/chromium/chrome/browser/chromeos/cros/
screen_lock_library.h 18 class Observer {
20 virtual ~Observer() {}
27 virtual void AddObserver(Observer* observer) = 0;
28 virtual void RemoveObserver(Observer* observer) = 0;
brightness_library.h 15 class Observer {
22 virtual void AddObserver(Observer* observer) = 0;
23 virtual void RemoveObserver(Observer* observer) = 0;
input_method_library.h 25 class Observer {
27 virtual ~Observer() = 0;
51 // Called by AddObserver() when the first observer is added.
56 // Adds an observer to receive notifications of input method related
57 // changes as desribed in the Observer class above.
58 virtual void AddObserver(Observer* observer) = 0;
59 virtual void RemoveObserver(Observer* observer) = 0;
96 // Notice: This function might call the Observer::ActiveInputMethodsChanged(
    [all...]
power_library.h 21 class Observer {
27 virtual void AddObserver(Observer* observer) = 0;
28 virtual void RemoveObserver(Observer* observer) = 0;
update_library.h 53 class Observer {
55 virtual ~Observer() { }
62 virtual void AddObserver(Observer* observer) = 0;
63 virtual void RemoveObserver(Observer* observer) = 0;
64 virtual bool HasObserver(Observer* observer) = 0;
  /external/chromium/chrome/browser/extensions/
extension_pref_value_map.h 47 // Observer interface for monitoring ExtensionPrefValueMap.
48 class Observer {
50 virtual ~Observer() {}
116 // Adds an observer and notifies it about the currently stored keys.
117 void AddObserver(Observer* observer);
119 void RemoveObserver(Observer* observer);
160 ObserverList<Observer, true> observers_;
  /external/chromium/chrome/browser/password_manager/
password_store.h 61 // the password store has changed. Register the observer via
63 class Observer {
65 // Notifies the observer that password data changed in some way.
69 virtual ~Observer() {}
113 // Adds an observer to be notified when the password store data changes.
114 void AddObserver(Observer* observer);
116 // Removes |observer| from the observer list.
117 void RemoveObserver(Observer* observer)
    [all...]
  /external/chromium/chrome/browser/status_icons/
status_icon.h 41 class Observer {
43 virtual ~Observer() {}
46 // in the context menu being displayed will not be passed to this observer
53 // Adds/Removes an observer for clicks on the status icon. If an observer is
54 // registered, then left clicks on the status icon will result in the observer
57 void AddObserver(Observer* observer);
58 void RemoveObserver(Observer* observer);
    [all...]
  /external/chromium/chrome/browser/chromeos/
system_access.h 19 class Observer {
39 virtual void AddObserver(Observer* observer) = 0;
40 virtual void RemoveObserver(Observer* observer) = 0;
wm_message_listener.h 23 // To listen for window manager messages add an observer.
24 class WmMessageListener : public MessageLoopForUI::Observer {
26 // Observer is notified any time a message is received from the window
28 class Observer {
36 void AddObserver(Observer* observer) {
37 observers_.AddObserver(observer);
40 void RemoveObserver(Observer* observer) {
41 observers_.RemoveObserver(observer);
    [all...]
  /packages/apps/Mms/src/com/android/mms/transaction/
Observer.java 23 public interface Observer {
  /external/chromium/chrome/browser/diagnostics/
diagnostics_model.h 28 // Observer derived form this class which provides a way to be notified of
32 class Observer {
34 virtual ~Observer() {}
65 // Runs all the available tests, the |observer| callbacks will be called as
67 virtual void RunAll(DiagnosticsModel::Observer* observer) = 0;
  /external/chromium/chrome/browser/importer/
importer_list.h 25 class Observer {
30 virtual ~Observer() {}
38 // the real work of detecting source profiles. |observer| must be non-NULL.
39 void DetectSourceProfiles(Observer* observer);
41 // Sets the observer of this object. When the current observer is destroyed,
42 // this method should be called with a NULL |observer| so it is not notified
44 void SetObserver(Observer* observer);
    [all...]
  /external/chromium/chrome/common/
pref_store.h 25 // Observer interface for monitoring PrefStore.
26 class Observer {
28 virtual ~Observer() {}
49 virtual void AddObserver(Observer* observer) {}
50 virtual void RemoveObserver(Observer* observer) {}
  /external/chromium/net/proxy/
proxy_config_service.h 28 // Observer for being notified when the proxy settings have changed.
29 class NET_EXPORT Observer {
31 virtual ~Observer() {}
43 // Adds/Removes an observer that will be called whenever the proxy
45 virtual void AddObserver(Observer* observer) = 0;
46 virtual void RemoveObserver(Observer* observer) = 0;
  /external/clang/include/clang/Analysis/Analyses/
LiveVariables.h 55 class Observer {
58 virtual ~Observer() {}
96 void runOnAllBlocks(Observer &obs);
  /external/chromium/chrome/browser/autofill/
personal_data_manager.h 45 // the observer via PersonalDataManager::SetObserver.
50 Observer {
52 // Notifies the observer that the PersonalDataManager has finished loading.
57 // Notifies the observer that the PersonalDataManager changed in some way.
61 virtual ~Observer() {}
69 virtual void SetObserver(PersonalDataManager::Observer* observer);
71 // Removes |observer| as the observer of this PersonalDataManager.
72 virtual void RemoveObserver(PersonalDataManager::Observer* observer)
    [all...]
  /external/chromium/chrome/browser/net/
pref_proxy_config_service.h 28 // Observer interface used to send out notifications on the IO thread about
30 class Observer {
32 virtual ~Observer() {}
48 // Observer manipulation is only valid on the IO thread.
49 void AddObserver(Observer* observer);
50 void RemoveObserver(Observer* observer);
96 ObserverList<Observer, true> observers_;
110 public net::ProxyConfigService::Observer,
    [all...]
  /external/chromium/net/base/
cert_database.h 35 // A CertDatabase::Observer will be notified on certificate database changes.
40 class Observer {
42 virtual ~Observer() {}
53 Observer() {}
56 DISALLOW_COPY_AND_ASSIGN(Observer);
173 // Registers |observer| to receive notifications of certificate changes. The
174 // thread on which this is called is the thread on which |observer| will be
176 static void AddObserver(Observer* observer);
178 // Unregisters |observer| from receiving notifications. This must be calle
    [all...]
  /external/chromium/base/memory/
scoped_vector_unittest.cc 11 // The LifeCycleObject notifies its Observer upon construction & destruction.
14 class Observer {
20 virtual ~Observer() {}
23 explicit LifeCycleObject(Observer* observer)
24 : observer_(observer) {
33 Observer* observer_;
57 class LifeCycleWatcher : public LifeCycleObject::Observer {
  /external/chromium/base/
message_pump_glib.h 25 // Observer is notified prior to a GdkEvent event being dispatched. As
27 class Observer {
29 virtual ~Observer() {}
75 // Adds an Observer, which will start receiving notifications immediately.
76 void AddObserver(Observer* observer);
78 // Removes an Observer. It is safe to call this method while an Observer is
80 void RemoveObserver(Observer* observer);
    [all...]

Completed in 1072 milliseconds

1 2 3