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 // 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 class Browser; | 46 class Browser; |
47 class Extension; | 47 class Extension; |
48 class ExtensionTestResultNotificationObserver; | 48 class ExtensionTestResultNotificationObserver; |
49 class ExternalTabContainer; | 49 class ExternalTabContainer; |
50 class FilePath; | 50 class FilePath; |
51 class InitialLoadObserver; | 51 class InitialLoadObserver; |
52 class LoginHandler; | 52 class LoginHandler; |
53 class MetricEventDurationObserver; | 53 class MetricEventDurationObserver; |
54 class NavigationControllerRestoredObserver; | 54 class NavigationControllerRestoredObserver; |
55 class Profile; | 55 class Profile; |
56 class TabContents; | |
57 struct AutomationMsg_Find_Params; | 56 struct AutomationMsg_Find_Params; |
58 struct Reposition_Params; | 57 struct Reposition_Params; |
59 struct ExternalTabSettings; | 58 struct ExternalTabSettings; |
60 | 59 |
61 namespace IPC { | 60 namespace IPC { |
62 class ChannelProxy; | 61 class ChannelProxy; |
63 } | 62 } |
64 | 63 |
65 namespace content { | 64 namespace content { |
66 class NavigationController; | 65 class NavigationController; |
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
430 std::string channel_id_; | 429 std::string channel_id_; |
431 | 430 |
432 // Trace data that has been collected but not flushed to the automation | 431 // Trace data that has been collected but not flushed to the automation |
433 // client. | 432 // client. |
434 TracingData tracing_data_; | 433 TracingData tracing_data_; |
435 | 434 |
436 DISALLOW_COPY_AND_ASSIGN(AutomationProvider); | 435 DISALLOW_COPY_AND_ASSIGN(AutomationProvider); |
437 }; | 436 }; |
438 | 437 |
439 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_H_ | 438 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_H_ |
OLD | NEW |