| 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 26 matching lines...) Expand all Loading... |
| 37 #if defined(OS_WIN) && !defined(USE_AURA) | 37 #if defined(OS_WIN) && !defined(USE_AURA) |
| 38 #include "ui/gfx/native_widget_types.h" | 38 #include "ui/gfx/native_widget_types.h" |
| 39 #endif // defined(OS_WIN) && !defined(USE_AURA) | 39 #endif // defined(OS_WIN) && !defined(USE_AURA) |
| 40 | 40 |
| 41 class AutomationBrowserTracker; | 41 class AutomationBrowserTracker; |
| 42 class AutomationResourceMessageFilter; | 42 class AutomationResourceMessageFilter; |
| 43 class AutomationTabTracker; | 43 class AutomationTabTracker; |
| 44 class AutomationWindowTracker; | 44 class AutomationWindowTracker; |
| 45 class Browser; | 45 class Browser; |
| 46 class ExternalTabContainer; | 46 class ExternalTabContainer; |
| 47 class FilePath; | |
| 48 class FindInPageNotificationObserver; | 47 class FindInPageNotificationObserver; |
| 49 class InitialLoadObserver; | 48 class InitialLoadObserver; |
| 50 class LoginHandler; | 49 class LoginHandler; |
| 51 class MetricEventDurationObserver; | 50 class MetricEventDurationObserver; |
| 52 class NavigationControllerRestoredObserver; | 51 class NavigationControllerRestoredObserver; |
| 53 class NewTabUILoadObserver; | 52 class NewTabUILoadObserver; |
| 54 class Profile; | 53 class Profile; |
| 55 struct AutomationMsg_Find_Params; | 54 struct AutomationMsg_Find_Params; |
| 56 struct Reposition_Params; | 55 struct Reposition_Params; |
| 57 struct ExternalTabSettings; | 56 struct ExternalTabSettings; |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 std::string channel_id_; | 360 std::string channel_id_; |
| 362 | 361 |
| 363 // Trace data that has been collected but not flushed to the automation | 362 // Trace data that has been collected but not flushed to the automation |
| 364 // client. | 363 // client. |
| 365 TracingData tracing_data_; | 364 TracingData tracing_data_; |
| 366 | 365 |
| 367 DISALLOW_COPY_AND_ASSIGN(AutomationProvider); | 366 DISALLOW_COPY_AND_ASSIGN(AutomationProvider); |
| 368 }; | 367 }; |
| 369 | 368 |
| 370 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_H_ | 369 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_H_ |
| OLD | NEW |