OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // This implements a browser-side endpoint for UI automation activity. | 5 // This implements a browser-side endpoint for UI automation activity. |
6 // The client-side endpoint is implemented by AutomationProxy. | 6 // The client-side endpoint is implemented by AutomationProxy. |
7 // The entire lifetime of this object should be contained within that of | 7 // The entire lifetime of this object should be contained within that of |
8 // the BrowserProcess, and in particular the NotificationService that's | 8 // the BrowserProcess, and in particular the NotificationService that's |
9 // hung off of it. | 9 // hung off of it. |
10 | 10 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 class AutomationResourceMessageFilter; | 47 class AutomationResourceMessageFilter; |
48 class AutomationTabTracker; | 48 class AutomationTabTracker; |
49 class AutomationWindowTracker; | 49 class AutomationWindowTracker; |
50 class CreditCard; | 50 class CreditCard; |
51 class DictionaryValue; | 51 class DictionaryValue; |
52 class Extension; | 52 class Extension; |
53 class ExtensionPortContainer; | 53 class ExtensionPortContainer; |
54 class ExtensionTestResultNotificationObserver; | 54 class ExtensionTestResultNotificationObserver; |
55 class ExternalTabContainer; | 55 class ExternalTabContainer; |
56 class InitialLoadObserver; | 56 class InitialLoadObserver; |
| 57 class ListValue; |
57 class LoginHandler; | 58 class LoginHandler; |
58 class MetricEventDurationObserver; | 59 class MetricEventDurationObserver; |
59 class NavigationController; | 60 class NavigationController; |
60 class NavigationControllerRestoredObserver; | 61 class NavigationControllerRestoredObserver; |
61 class Profile; | 62 class Profile; |
62 struct AutocompleteMatchData; | 63 struct AutocompleteMatchData; |
63 | 64 |
64 namespace gfx { | 65 namespace gfx { |
65 class Point; | 66 class Point; |
66 } | 67 } |
(...skipping 825 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
892 // that StartTrackingPopupMenus has been called. | 893 // that StartTrackingPopupMenus has been called. |
893 bool popup_menu_opened_; | 894 bool popup_menu_opened_; |
894 | 895 |
895 // A temporary object that receives a notification when a popup menu opens. | 896 // A temporary object that receives a notification when a popup menu opens. |
896 PopupMenuWaiter* popup_menu_waiter_; | 897 PopupMenuWaiter* popup_menu_waiter_; |
897 | 898 |
898 DISALLOW_COPY_AND_ASSIGN(AutomationProvider); | 899 DISALLOW_COPY_AND_ASSIGN(AutomationProvider); |
899 }; | 900 }; |
900 | 901 |
901 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_H_ | 902 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_H_ |
OLD | NEW |