| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <deque> | 9 #include <deque> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 struct AutomationMouseEvent; | 58 struct AutomationMouseEvent; |
| 59 class AutomationProvider; | 59 class AutomationProvider; |
| 60 class BalloonCollection; | 60 class BalloonCollection; |
| 61 class Browser; | 61 class Browser; |
| 62 class ExtensionProcessManager; | 62 class ExtensionProcessManager; |
| 63 class ExtensionService; | 63 class ExtensionService; |
| 64 class InfoBarTabHelper; | 64 class InfoBarTabHelper; |
| 65 class Notification; | 65 class Notification; |
| 66 class Profile; | 66 class Profile; |
| 67 class SavePackage; | 67 class SavePackage; |
| 68 class TabContents; |
| 69 typedef TabContents TabContentsWrapper; |
| 68 class TranslateInfoBarDelegate; | 70 class TranslateInfoBarDelegate; |
| 69 | 71 |
| 70 namespace automation { | 72 namespace automation { |
| 71 class Error; | 73 class Error; |
| 72 } | 74 } |
| 73 | 75 |
| 74 #if defined(OS_CHROMEOS) | 76 #if defined(OS_CHROMEOS) |
| 75 namespace chromeos { | 77 namespace chromeos { |
| 76 class ExistingUserController; | 78 class ExistingUserController; |
| 77 class WizardScreen; | 79 class WizardScreen; |
| (...skipping 1813 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1891 private: | 1893 private: |
| 1892 base::WeakPtr<AutomationProvider> automation_; | 1894 base::WeakPtr<AutomationProvider> automation_; |
| 1893 scoped_ptr<IPC::Message> reply_message_; | 1895 scoped_ptr<IPC::Message> reply_message_; |
| 1894 std::string extension_id_; | 1896 std::string extension_id_; |
| 1895 content::NotificationRegistrar registrar_; | 1897 content::NotificationRegistrar registrar_; |
| 1896 | 1898 |
| 1897 DISALLOW_COPY_AND_ASSIGN(ExtensionPopupObserver); | 1899 DISALLOW_COPY_AND_ASSIGN(ExtensionPopupObserver); |
| 1898 }; | 1900 }; |
| 1899 | 1901 |
| 1900 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ | 1902 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ |
| OLD | NEW |