| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 20 matching lines...) Expand all Loading... |
| 31 #include "content/browser/trace_controller.h" | 31 #include "content/browser/trace_controller.h" |
| 32 #include "content/public/browser/browser_thread.h" | 32 #include "content/public/browser/browser_thread.h" |
| 33 #include "content/public/browser/notification_observer.h" | 33 #include "content/public/browser/notification_observer.h" |
| 34 #include "ipc/ipc_channel.h" | 34 #include "ipc/ipc_channel.h" |
| 35 | 35 |
| 36 #if defined(OS_WIN) && !defined(USE_AURA) | 36 #if defined(OS_WIN) && !defined(USE_AURA) |
| 37 #include "ui/gfx/native_widget_types.h" | 37 #include "ui/gfx/native_widget_types.h" |
| 38 #include "views/events/event.h" | 38 #include "views/events/event.h" |
| 39 #endif // defined(OS_WIN) && !defined(USE_AURA) | 39 #endif // defined(OS_WIN) && !defined(USE_AURA) |
| 40 | 40 |
| 41 class PopupMenuWaiter; | |
| 42 class TabContents; | 41 class TabContents; |
| 43 struct AutomationMsg_Find_Params; | 42 struct AutomationMsg_Find_Params; |
| 44 struct Reposition_Params; | 43 struct Reposition_Params; |
| 45 struct ExternalTabSettings; | 44 struct ExternalTabSettings; |
| 46 | 45 |
| 47 namespace IPC { | 46 namespace IPC { |
| 48 class ChannelProxy; | 47 class ChannelProxy; |
| 49 } | 48 } |
| 50 | 49 |
| 51 class AutofillProfile; | |
| 52 class AutomationBrowserTracker; | 50 class AutomationBrowserTracker; |
| 53 class AutomationExtensionTracker; | 51 class AutomationExtensionTracker; |
| 54 class AutomationOmniboxTracker; | |
| 55 class AutomationResourceMessageFilter; | 52 class AutomationResourceMessageFilter; |
| 56 class AutomationTabTracker; | 53 class AutomationTabTracker; |
| 57 class AutomationWindowTracker; | 54 class AutomationWindowTracker; |
| 58 class Browser; | 55 class Browser; |
| 59 class CreditCard; | |
| 60 class DownloadItem; | 56 class DownloadItem; |
| 61 class Extension; | 57 class Extension; |
| 62 class ExtensionPortContainer; | |
| 63 class ExtensionTestResultNotificationObserver; | 58 class ExtensionTestResultNotificationObserver; |
| 64 class ExternalTabContainer; | 59 class ExternalTabContainer; |
| 65 class FilePath; | 60 class FilePath; |
| 66 class InitialLoadObserver; | 61 class InitialLoadObserver; |
| 67 class LoginHandler; | 62 class LoginHandler; |
| 68 class MetricEventDurationObserver; | 63 class MetricEventDurationObserver; |
| 69 class NavigationController; | 64 class NavigationController; |
| 70 class NavigationControllerRestoredObserver; | 65 class NavigationControllerRestoredObserver; |
| 71 class Profile; | 66 class Profile; |
| 72 class RenderViewHost; | 67 class RenderViewHost; |
| 73 class TabContents; | 68 class TabContents; |
| 74 struct AutocompleteMatchData; | |
| 75 | 69 |
| 76 namespace base { | 70 namespace base { |
| 77 class DictionaryValue; | 71 class DictionaryValue; |
| 78 } | 72 } |
| 79 | 73 |
| 80 namespace gfx { | 74 namespace gfx { |
| 81 class Point; | 75 class Point; |
| 82 } | 76 } |
| 83 | 77 |
| 84 class AutomationProvider | 78 class AutomationProvider |
| (...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 414 std::string channel_id_; | 408 std::string channel_id_; |
| 415 | 409 |
| 416 // Trace data that has been collected but not flushed to the automation | 410 // Trace data that has been collected but not flushed to the automation |
| 417 // client. | 411 // client. |
| 418 TracingData tracing_data_; | 412 TracingData tracing_data_; |
| 419 | 413 |
| 420 DISALLOW_COPY_AND_ASSIGN(AutomationProvider); | 414 DISALLOW_COPY_AND_ASSIGN(AutomationProvider); |
| 421 }; | 415 }; |
| 422 | 416 |
| 423 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_H_ | 417 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_H_ |
| OLD | NEW |