OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 21 matching lines...) Expand all Loading... |
32 #include "chrome/browser/download/all_download_item_notifier.h" | 32 #include "chrome/browser/download/all_download_item_notifier.h" |
33 #include "chrome/browser/history/history_service.h" | 33 #include "chrome/browser/history/history_service.h" |
34 #include "chrome/browser/history/history_types.h" | 34 #include "chrome/browser/history/history_types.h" |
35 #include "chrome/browser/importer/importer_progress_observer.h" | 35 #include "chrome/browser/importer/importer_progress_observer.h" |
36 #include "chrome/browser/memory_details.h" | 36 #include "chrome/browser/memory_details.h" |
37 #include "chrome/browser/password_manager/password_store_change.h" | 37 #include "chrome/browser/password_manager/password_store_change.h" |
38 #include "chrome/browser/password_manager/password_store_consumer.h" | 38 #include "chrome/browser/password_manager/password_store_consumer.h" |
39 #include "chrome/browser/search_engines/template_url_service_observer.h" | 39 #include "chrome/browser/search_engines/template_url_service_observer.h" |
40 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 40 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
41 #include "chrome/common/automation_constants.h" | 41 #include "chrome/common/automation_constants.h" |
| 42 #include "chrome/common/extensions/extension_constants.h" |
42 #include "chrome/common/importer/importer_data_types.h" | 43 #include "chrome/common/importer/importer_data_types.h" |
43 #include "content/public/browser/browser_thread.h" | 44 #include "content/public/browser/browser_thread.h" |
44 #include "content/public/browser/download_item.h" | 45 #include "content/public/browser/download_item.h" |
45 #include "content/public/browser/download_manager.h" | 46 #include "content/public/browser/download_manager.h" |
46 #include "content/public/browser/notification_observer.h" | 47 #include "content/public/browser/notification_observer.h" |
47 #include "content/public/browser/notification_registrar.h" | 48 #include "content/public/browser/notification_registrar.h" |
48 #include "content/public/browser/notification_types.h" | 49 #include "content/public/browser/notification_types.h" |
49 #include "extensions/common/constants.h" | |
50 #include "ui/gfx/point.h" | 50 #include "ui/gfx/point.h" |
51 #include "ui/gfx/size.h" | 51 #include "ui/gfx/size.h" |
52 | 52 |
53 class AutomationProvider; | 53 class AutomationProvider; |
54 class BalloonCollection; | 54 class BalloonCollection; |
55 class Browser; | 55 class Browser; |
56 class ExtensionService; | 56 class ExtensionService; |
57 class Notification; | 57 class Notification; |
58 class Profile; | 58 class Profile; |
59 class SavePackage; | 59 class SavePackage; |
(...skipping 1419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1479 base::WeakPtr<AutomationProvider> automation_; | 1479 base::WeakPtr<AutomationProvider> automation_; |
1480 scoped_ptr<IPC::Message> reply_message_; | 1480 scoped_ptr<IPC::Message> reply_message_; |
1481 int new_window_id_; | 1481 int new_window_id_; |
1482 int num_loads_; | 1482 int num_loads_; |
1483 | 1483 |
1484 DISALLOW_COPY_AND_ASSIGN( | 1484 DISALLOW_COPY_AND_ASSIGN( |
1485 BrowserOpenedWithExistingProfileNotificationObserver); | 1485 BrowserOpenedWithExistingProfileNotificationObserver); |
1486 }; | 1486 }; |
1487 | 1487 |
1488 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ | 1488 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ |
OLD | NEW |