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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 class AutomationProvider; | 57 class AutomationProvider; |
58 class BalloonCollection; | 58 class BalloonCollection; |
59 class Browser; | 59 class Browser; |
60 class Extension; | 60 class Extension; |
61 class ExtensionProcessManager; | 61 class ExtensionProcessManager; |
62 class ExtensionService; | 62 class ExtensionService; |
63 class InfoBarTabHelper; | 63 class InfoBarTabHelper; |
64 class Notification; | 64 class Notification; |
65 class Profile; | 65 class Profile; |
66 class SavePackage; | 66 class SavePackage; |
67 class TabContents; | |
68 class TranslateInfoBarDelegate; | 67 class TranslateInfoBarDelegate; |
69 | 68 |
70 #if defined(OS_CHROMEOS) | 69 #if defined(OS_CHROMEOS) |
71 namespace chromeos { | 70 namespace chromeos { |
72 class ExistingUserController; | 71 class ExistingUserController; |
73 } | 72 } |
74 #endif // defined(OS_CHROMEOS) | 73 #endif // defined(OS_CHROMEOS) |
75 | 74 |
76 namespace IPC { | 75 namespace IPC { |
77 class Message; | 76 class Message; |
(...skipping 1829 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1907 private: | 1906 private: |
1908 base::WeakPtr<AutomationProvider> automation_; | 1907 base::WeakPtr<AutomationProvider> automation_; |
1909 scoped_ptr<IPC::Message> reply_message_; | 1908 scoped_ptr<IPC::Message> reply_message_; |
1910 std::string extension_id_; | 1909 std::string extension_id_; |
1911 content::NotificationRegistrar registrar_; | 1910 content::NotificationRegistrar registrar_; |
1912 | 1911 |
1913 DISALLOW_COPY_AND_ASSIGN(ExtensionPopupObserver); | 1912 DISALLOW_COPY_AND_ASSIGN(ExtensionPopupObserver); |
1914 }; | 1913 }; |
1915 | 1914 |
1916 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ | 1915 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ |
OLD | NEW |