| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ | 5 #ifndef CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ |
| 6 #define CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ | 6 #define CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <deque> | 9 #include <deque> |
| 10 #include <map> | 10 #include <map> |
| 11 #include <set> | 11 #include <set> |
| 12 | 12 |
| 13 #include "chrome/browser/automation/automation_provider_json.h" | 13 #include "chrome/browser/automation/automation_provider_json.h" |
| 14 #include "chrome/browser/bookmarks/bookmark_model_observer.h" | 14 #include "chrome/browser/bookmarks/bookmark_model_observer.h" |
| 15 #include "chrome/browser/browsing_data_remover.h" | 15 #include "chrome/browser/browsing_data_remover.h" |
| 16 #include "chrome/browser/download/download_item.h" | 16 #include "chrome/browser/download/download_item.h" |
| 17 #include "chrome/browser/download/download_manager.h" | 17 #include "chrome/browser/download/download_manager.h" |
| 18 #include "chrome/browser/history/history.h" | 18 #include "chrome/browser/history/history.h" |
| 19 #include "chrome/browser/importer/importer.h" | 19 #include "chrome/browser/importer/importer.h" |
| 20 #include "chrome/browser/importer/importer_data_types.h" | 20 #include "chrome/browser/importer/importer_data_types.h" |
| 21 #include "chrome/browser/password_manager/password_store.h" | 21 #include "chrome/browser/password_manager/password_store.h" |
| 22 #include "chrome/browser/search_engines/template_url_model_observer.h" | 22 #include "chrome/browser/search_engines/template_url_model_observer.h" |
| 23 #include "chrome/browser/tabs/tab_strip_model.h" | 23 #include "chrome/browser/tabs/tab_strip_model.h" |
| 24 #include "chrome/common/automation_messages.h" |
| 24 #include "chrome/common/notification_observer.h" | 25 #include "chrome/common/notification_observer.h" |
| 25 #include "chrome/common/notification_registrar.h" | 26 #include "chrome/common/notification_registrar.h" |
| 26 #include "chrome/common/notification_type.h" | 27 #include "chrome/common/notification_type.h" |
| 27 #include "chrome/test/automation/automation_messages.h" | |
| 28 | 28 |
| 29 class AutocompleteEditModel; | 29 class AutocompleteEditModel; |
| 30 class AutomationProvider; | 30 class AutomationProvider; |
| 31 class BalloonCollection; | 31 class BalloonCollection; |
| 32 class Browser; | 32 class Browser; |
| 33 class Extension; | 33 class Extension; |
| 34 class ExtensionProcessManager; | 34 class ExtensionProcessManager; |
| 35 class NavigationController; | 35 class NavigationController; |
| 36 class SavePackage; | 36 class SavePackage; |
| 37 class TabContents; | 37 class TabContents; |
| (...skipping 866 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 904 private: | 904 private: |
| 905 AutomationJSONReply reply_; | 905 AutomationJSONReply reply_; |
| 906 BalloonCollection* collection_; | 906 BalloonCollection* collection_; |
| 907 int count_; | 907 int count_; |
| 908 | 908 |
| 909 DISALLOW_COPY_AND_ASSIGN(OnNotificationBalloonCountObserver); | 909 DISALLOW_COPY_AND_ASSIGN(OnNotificationBalloonCountObserver); |
| 910 }; | 910 }; |
| 911 | 911 |
| 912 | 912 |
| 913 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ | 913 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ |
| OLD | NEW |