| 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/testing_automation_provider.h" | 13 #include "chrome/browser/automation/testing_automation_provider.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/tab_contents/tab_contents.h" | |
| 24 #include "chrome/browser/tabs/tab_strip_model.h" | 23 #include "chrome/browser/tabs/tab_strip_model.h" |
| 25 #include "chrome/common/notification_observer.h" | 24 #include "chrome/common/notification_observer.h" |
| 26 #include "chrome/common/notification_registrar.h" | 25 #include "chrome/common/notification_registrar.h" |
| 27 #include "chrome/common/notification_type.h" | 26 #include "chrome/common/notification_type.h" |
| 28 #include "chrome/test/automation/automation_messages.h" | 27 #include "chrome/test/automation/automation_messages.h" |
| 29 | 28 |
| 30 class AutomationProvider; | 29 class AutomationProvider; |
| 31 class Browser; | 30 class Browser; |
| 32 class Extension; | 31 class Extension; |
| 33 class ExtensionProcessManager; | 32 class ExtensionProcessManager; |
| (...skipping 823 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 857 | 856 |
| 858 private: | 857 private: |
| 859 NotificationRegistrar registrar_; | 858 NotificationRegistrar registrar_; |
| 860 AutomationProvider* automation_; | 859 AutomationProvider* automation_; |
| 861 IPC::Message* reply_message_; | 860 IPC::Message* reply_message_; |
| 862 | 861 |
| 863 DISALLOW_COPY_AND_ASSIGN(SavePackageNotificationObserver); | 862 DISALLOW_COPY_AND_ASSIGN(SavePackageNotificationObserver); |
| 864 }; | 863 }; |
| 865 | 864 |
| 866 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ | 865 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ |
| OLD | NEW |