| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "base/scoped_ptr.h" | 13 #include "base/scoped_ptr.h" |
| 14 #include "chrome/browser/automation/automation_provider_json.h" | 14 #include "chrome/browser/automation/automation_provider_json.h" |
| 15 #include "chrome/browser/bookmarks/bookmark_model_observer.h" | 15 #include "chrome/browser/bookmarks/bookmark_model_observer.h" |
| 16 #include "chrome/browser/browsing_data_remover.h" | 16 #include "chrome/browser/browsing_data_remover.h" |
| 17 #include "chrome/browser/cancelable_request.h" | 17 #include "chrome/browser/cancelable_request.h" |
| 18 #include "chrome/browser/download/download_item.h" | 18 #include "chrome/browser/download/download_item.h" |
| 19 #include "chrome/browser/download/download_manager.h" | 19 #include "chrome/browser/download/download_manager.h" |
| 20 #include "chrome/browser/history/history.h" | 20 #include "chrome/browser/history/history.h" |
| 21 #include "chrome/browser/history/history_types.h" | 21 #include "chrome/browser/history/history_types.h" |
| 22 #include "chrome/browser/importer/importer.h" | 22 #include "chrome/browser/importer/importer.h" |
| 23 #include "chrome/browser/importer/importer_data_types.h" | 23 #include "chrome/browser/importer/importer_data_types.h" |
| 24 #include "chrome/browser/password_manager/password_store.h" | 24 #include "chrome/browser/password_manager/password_store.h" |
| 25 #include "chrome/browser/search_engines/template_url_model_observer.h" | 25 #include "chrome/browser/search_engines/template_url_model_observer.h" |
| 26 #include "chrome/browser/tabs/tab_strip_model.h" | 26 #include "chrome/browser/tabs/tab_strip_model.h" |
| 27 #include "chrome/common/automation_messages.h" | 27 #include "chrome/common/automation_constants.h" |
| 28 #include "chrome/common/notification_observer.h" | 28 #include "chrome/common/notification_observer.h" |
| 29 #include "chrome/common/notification_registrar.h" | 29 #include "chrome/common/notification_registrar.h" |
| 30 #include "chrome/common/notification_type.h" | 30 #include "chrome/common/notification_type.h" |
| 31 #include "ui/gfx/size.h" |
| 31 | 32 |
| 32 class AutocompleteEditModel; | 33 class AutocompleteEditModel; |
| 33 class AutomationProvider; | 34 class AutomationProvider; |
| 34 class BalloonCollection; | 35 class BalloonCollection; |
| 35 class Browser; | 36 class Browser; |
| 36 class Extension; | 37 class Extension; |
| 37 class ExtensionProcessManager; | 38 class ExtensionProcessManager; |
| 38 class NavigationController; | 39 class NavigationController; |
| 39 class RenderViewHost; | 40 class RenderViewHost; |
| 40 class SavePackage; | 41 class SavePackage; |
| (...skipping 1068 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1109 void RunOnProcessLauncherThread(); | 1110 void RunOnProcessLauncherThread(); |
| 1110 void RunOnUIThread(); | 1111 void RunOnUIThread(); |
| 1111 | 1112 |
| 1112 scoped_refptr<AutomationProvider> automation_; | 1113 scoped_refptr<AutomationProvider> automation_; |
| 1113 IPC::Message* reply_message_; | 1114 IPC::Message* reply_message_; |
| 1114 | 1115 |
| 1115 DISALLOW_COPY_AND_ASSIGN(WaitForProcessLauncherThreadToGoIdleObserver); | 1116 DISALLOW_COPY_AND_ASSIGN(WaitForProcessLauncherThreadToGoIdleObserver); |
| 1116 }; | 1117 }; |
| 1117 | 1118 |
| 1118 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ | 1119 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ |
| OLD | NEW |