| 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> |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 #include "chrome/common/automation_constants.h" | 46 #include "chrome/common/automation_constants.h" |
| 47 #include "chrome/common/extensions/extension_constants.h" | 47 #include "chrome/common/extensions/extension_constants.h" |
| 48 #include "content/browser/cancelable_request.h" | 48 #include "content/browser/cancelable_request.h" |
| 49 #include "content/browser/download/download_item.h" | 49 #include "content/browser/download/download_item.h" |
| 50 #include "content/browser/download/download_manager.h" | 50 #include "content/browser/download/download_manager.h" |
| 51 #include "content/public/browser/notification_observer.h" | 51 #include "content/public/browser/notification_observer.h" |
| 52 #include "content/public/browser/notification_registrar.h" | 52 #include "content/public/browser/notification_registrar.h" |
| 53 #include "content/public/browser/notification_types.h" | 53 #include "content/public/browser/notification_types.h" |
| 54 #include "ui/gfx/size.h" | 54 #include "ui/gfx/size.h" |
| 55 | 55 |
| 56 class AutocompleteEditModel; | |
| 57 class AutomationProvider; | 56 class AutomationProvider; |
| 58 class BalloonCollection; | 57 class BalloonCollection; |
| 59 class Browser; | 58 class Browser; |
| 60 class Extension; | 59 class Extension; |
| 61 class ExtensionProcessManager; | 60 class ExtensionProcessManager; |
| 62 class ExtensionService; | 61 class ExtensionService; |
| 63 class InfoBarTabHelper; | 62 class InfoBarTabHelper; |
| 64 class NavigationController; | 63 class NavigationController; |
| 65 class Notification; | 64 class Notification; |
| 66 class Profile; | 65 class Profile; |
| (...skipping 1739 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1806 private: | 1805 private: |
| 1807 content::NotificationRegistrar registrar_; | 1806 content::NotificationRegistrar registrar_; |
| 1808 base::WeakPtr<AutomationProvider> automation_; | 1807 base::WeakPtr<AutomationProvider> automation_; |
| 1809 scoped_ptr<IPC::Message> reply_message_; | 1808 scoped_ptr<IPC::Message> reply_message_; |
| 1810 int new_window_id_; | 1809 int new_window_id_; |
| 1811 | 1810 |
| 1812 DISALLOW_COPY_AND_ASSIGN(BrowserOpenedWithNewProfileNotificationObserver); | 1811 DISALLOW_COPY_AND_ASSIGN(BrowserOpenedWithNewProfileNotificationObserver); |
| 1813 }; | 1812 }; |
| 1814 | 1813 |
| 1815 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ | 1814 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ |
| OLD | NEW |