HomeSort by relevance Sort by last modified time
    Searched full:notificationtype (Results 1 - 25 of 713) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/extensions/
extension_notification_observer.cc 17 std::string Str(const std::vector<chrome::NotificationType>& types) {
20 for (std::vector<chrome::NotificationType>::const_iterator it =
45 return CheckNotifications(std::vector<chrome::NotificationType>());
49 chrome::NotificationType type) {
50 return CheckNotifications(std::vector<chrome::NotificationType>(1, type));
54 chrome::NotificationType t1,
55 chrome::NotificationType t2) {
56 std::vector<chrome::NotificationType> types;
63 chrome::NotificationType t1,
64 chrome::NotificationType t2
    [all...]
extension_notification_observer.h 36 chrome::NotificationType type) WARN_UNUSED_RESULT;
38 chrome::NotificationType t1,
39 chrome::NotificationType t2) WARN_UNUSED_RESULT;
41 chrome::NotificationType t1,
42 chrome::NotificationType t2,
43 chrome::NotificationType t3) WARN_UNUSED_RESULT;
45 chrome::NotificationType t1,
46 chrome::NotificationType t2,
47 chrome::NotificationType t3,
48 chrome::NotificationType t4
    [all...]
  /external/chromium/chrome/browser/automation/
automation_tab_tracker.cc 21 registrar_.Add(this, NotificationType::TAB_CLOSING,
23 registrar_.Add(this, NotificationType::EXTERNAL_TAB_CLOSED,
27 registrar_.Add(this, NotificationType::LOAD_STOP,
32 registrar_.Remove(this, NotificationType::TAB_CLOSING,
34 registrar_.Remove(this, NotificationType::EXTERNAL_TAB_CLOSED,
36 registrar_.Remove(this, NotificationType::LOAD_STOP,
40 void AutomationTabTracker::Observe(NotificationType type,
44 case NotificationType::LOAD_STOP:
48 case NotificationType::EXTERNAL_TAB_CLOSED:
49 case NotificationType::TAB_CLOSING
    [all...]
automation_autocomplete_edit_tracker.cc 20 registrar_.Add(this, NotificationType::AUTOCOMPLETE_EDIT_DESTROYED,
26 registrar_.Remove(this, NotificationType::AUTOCOMPLETE_EDIT_DESTROYED,
automation_browser_tracker.cc 17 registrar_.Add(this, NotificationType::BROWSER_CLOSED,
22 registrar_.Remove(this, NotificationType::BROWSER_CLOSED,
automation_provider_observers.cc 94 registrar_.Add(this, NotificationType::LOAD_START,
96 registrar_.Add(this, NotificationType::LOAD_STOP,
104 void InitialLoadObserver::Observe(NotificationType type,
107 if (type == NotificationType::LOAD_START) {
112 } else if (type == NotificationType::LOAD_STOP) {
157 registrar_.Add(this, NotificationType::INITIAL_NEW_TAB_UI_LOAD,
164 void NewTabUILoadObserver::Observe(NotificationType type,
167 if (type == NotificationType::INITIAL_NEW_TAB_UI_LOAD) {
188 registrar_.Add(this, NotificationType::LOAD_STOP,
197 NotificationType type, const NotificationSource& source
    [all...]
automation_tab_tracker.h 15 class NotificationType;
26 virtual void Observe(NotificationType type,
automation_window_tracker.cc 18 registrar_.Add(this, NotificationType::WINDOW_CLOSED,
23 registrar_.Remove(this, NotificationType::WINDOW_CLOSED,
automation_extension_tracker.cc 14 registrar_.Add(this, NotificationType::EXTENSION_UNLOADED,
25 void AutomationExtensionTracker::Observe(NotificationType type,
28 if (type != NotificationType::EXTENSION_UNLOADED) {
  /external/chromium/chrome/browser/
repost_form_warning_controller.cc 15 registrar_.Add(this, NotificationType::LOAD_START,
17 registrar_.Add(this, NotificationType::TAB_CLOSING,
19 registrar_.Add(this, NotificationType::REPOST_WARNING_SHOWN,
50 void RepostFormWarningController::Observe(NotificationType type,
57 (type == NotificationType::LOAD_START ||
58 type == NotificationType::TAB_CLOSING ||
59 type == NotificationType::REPOST_WARNING_SHOWN)) {
  /external/chromium/chrome/browser/tabs/
pinned_tab_service.cc 29 registrar_.Add(this, NotificationType::BROWSER_OPENED,
31 registrar_.Add(this, NotificationType::BROWSER_CLOSING,
33 registrar_.Add(this, NotificationType::APP_EXITING,
37 void PinnedTabService::Observe(NotificationType type,
44 case NotificationType::BROWSER_OPENED: {
53 case NotificationType::BROWSER_CLOSING: {
66 case NotificationType::APP_EXITING: {
  /external/chromium/chrome/browser/prefs/
pref_observer_mock.cc 14 EXPECT_CALL(*this, Observe(NotificationType(NotificationType::PREF_CHANGED),
  /external/chromium/chrome/browser/sync/glue/
data_type_manager_mock.cc 19 NotificationType::SYNC_CONFIGURE_START),
21 (this, NotificationType::SYNC_CONFIGURE_DONE, &result_)));
session_change_processor.cc 55 void SessionChangeProcessor::Observe(NotificationType type,
66 case NotificationType::BROWSER_OPENED: {
76 case NotificationType::TAB_PARENTED: {
87 case NotificationType::TAB_CLOSED: {
98 case NotificationType::NAV_LIST_PRUNED: {
108 case NotificationType::NAV_ENTRY_CHANGED: {
118 case NotificationType::NAV_ENTRY_COMMITTED: {
128 case NotificationType::TAB_CONTENTS_APPLICATION_EXTENSION_CHANGED: {
219 NotificationType::FOREIGN_SESSION_UPDATED,
243 notification_registrar_.Add(this, NotificationType::TAB_PARENTED
    [all...]
extension_change_processor.cc 46 void ExtensionChangeProcessor::Observe(NotificationType type,
52 if ((type != NotificationType::EXTENSION_INSTALLED) &&
53 (type != NotificationType::EXTENSION_UNINSTALLED) &&
54 (type != NotificationType::EXTENSION_LOADED) &&
55 (type != NotificationType::EXTENSION_UPDATE_DISABLED) &&
56 (type != NotificationType::EXTENSION_UNLOADED)) {
63 if (type == NotificationType::EXTENSION_UNINSTALLED) {
76 if (type == NotificationType::EXTENSION_UNLOADED) {
174 this, NotificationType::EXTENSION_INSTALLED,
177 this, NotificationType::EXTENSION_UNINSTALLED
    [all...]
  /external/chromium_org/chrome/browser/chromeos/file_manager/
desktop_notifications.h 31 enum NotificationType {
59 void ShowNotification(NotificationType type, const std::string& path);
60 void ShowNotificationDelayed(NotificationType type,
65 virtual void HideNotification(NotificationType type, const std::string& path);
66 void HideNotificationDelayed(NotificationType type,
88 virtual void ShowNotificationWithMessage(NotificationType type,
91 void ShowNotificationById(NotificationType type,
  /external/chromium/chrome/browser/ui/views/
accessibility_event_router_views.h 79 views::View* view, NotificationType type);
87 views::View* view, NotificationType type, Profile* profile);
89 views::View* view, NotificationType type, Profile* profile);
91 views::View* view, NotificationType type, Profile* profile);
93 views::View* view, NotificationType type, Profile* profile);
95 views::View* view, NotificationType type, Profile* profile);
97 views::View* view, NotificationType type, Profile* profile);
99 views::View* view, NotificationType type, Profile* profile);
101 views::View* view, NotificationType type, Profile* profile);
104 bool IsMenuEvent(views::View* view, NotificationType type)
    [all...]
  /external/chromium/chrome/browser/ui/views/tab_contents/
tab_contents_container.cc 29 void TabContentsContainer::Observe(NotificationType type,
32 if (type == NotificationType::RENDER_VIEW_HOST_CHANGED) {
37 } else if (type == NotificationType::TAB_CONTENTS_DESTROYED) {
59 NotificationType::RENDER_VIEW_HOST_CHANGED,
63 NotificationType::TAB_CONTENTS_DESTROYED,
  /external/chromium/chrome/browser/extensions/
extension_accessibility_api.cc 55 NotificationType::ACCESSIBILITY_WINDOW_OPENED,
58 NotificationType::ACCESSIBILITY_WINDOW_CLOSED,
61 NotificationType::ACCESSIBILITY_CONTROL_FOCUSED,
64 NotificationType::ACCESSIBILITY_CONTROL_ACTION,
67 NotificationType::ACCESSIBILITY_TEXT_CHANGED,
70 NotificationType::ACCESSIBILITY_MENU_OPENED,
73 NotificationType::ACCESSIBILITY_MENU_CLOSED,
79 NotificationType type,
83 case NotificationType::ACCESSIBILITY_WINDOW_OPENED:
86 case NotificationType::ACCESSIBILITY_WINDOW_CLOSED
    [all...]
extension_tab_id_map.cc 32 virtual void Observe(NotificationType type,
41 registrar_.Add(this, NotificationType::RENDER_VIEW_HOST_CREATED_FOR_TAB,
43 registrar_.Add(this, NotificationType::RENDER_VIEW_HOST_DELETED,
45 registrar_.Add(this, NotificationType::TAB_PARENTED,
54 NotificationType type, const NotificationSource& source,
57 case NotificationType::RENDER_VIEW_HOST_CREATED_FOR_TAB: {
72 case NotificationType::TAB_PARENTED: {
86 case NotificationType::RENDER_VIEW_HOST_DELETED: {
  /external/chromium/chrome/browser/chromeos/
network_state_notifier_browsertest.cc 43 virtual void Observe(NotificationType type,
47 EXPECT_TRUE(NotificationType::NETWORK_STATE_CHANGED == type);
55 NotificationType::NETWORK_STATE_CHANGED);
66 registrar.Add(this, NotificationType::NETWORK_STATE_CHANGED,
80 registrar.Add(this, NotificationType::NETWORK_STATE_CHANGED,
98 registrar.Add(this, NotificationType::NETWORK_STATE_CHANGED,
  /external/chromium/chrome/browser/content_settings/
stub_settings_observer.cc 13 registrar_.Add(this, NotificationType::CONTENT_SETTINGS_CHANGED,
19 void StubSettingsObserver::Observe(NotificationType type,
  /external/chromium/chrome/browser/ui/options/
options_page_base.cc 33 void OptionsPageBase::Observe(NotificationType type,
36 if (type == NotificationType::PREF_CHANGED)
  /external/chromium/chrome/browser/ui/search_engines/
template_url_fetcher_ui_callbacks.cc 22 NotificationType::TAB_CONTENTS_DESTROYED,
54 NotificationType type,
57 DCHECK(type == NotificationType::TAB_CONTENTS_DESTROYED);
  /external/chromium/chrome/browser/ui/webui/
chrome_url_data_manager_browsertest.cc 20 registrar_.Add(this, NotificationType::NAV_ENTRY_COMMITTED,
24 virtual void Observe(NotificationType type,
27 DCHECK_EQ(NotificationType::NAV_ENTRY_COMMITTED, type.value);

Completed in 825 milliseconds

1 2 3 4 5 6 7 8 91011>>