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 18 matching lines...) Expand all Loading... |
29 #include "chrome/common/content_settings.h" | 29 #include "chrome/common/content_settings.h" |
30 #include "content/public/browser/browser_thread.h" | 30 #include "content/public/browser/browser_thread.h" |
31 #include "content/public/browser/notification_observer.h" | 31 #include "content/public/browser/notification_observer.h" |
32 #include "content/public/browser/trace_subscriber.h" | 32 #include "content/public/browser/trace_subscriber.h" |
33 #include "ipc/ipc_channel.h" | 33 #include "ipc/ipc_channel.h" |
34 #include "ipc/ipc_listener.h" | 34 #include "ipc/ipc_listener.h" |
35 #include "ipc/ipc_sender.h" | 35 #include "ipc/ipc_sender.h" |
36 | 36 |
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 #include "ui/views/events/event.h" | |
40 #endif // defined(OS_WIN) && !defined(USE_AURA) | 39 #endif // defined(OS_WIN) && !defined(USE_AURA) |
41 | 40 |
42 class AutomationBrowserTracker; | 41 class AutomationBrowserTracker; |
43 class AutomationResourceMessageFilter; | 42 class AutomationResourceMessageFilter; |
44 class AutomationTabTracker; | 43 class AutomationTabTracker; |
45 class AutomationWindowTracker; | 44 class AutomationWindowTracker; |
46 class Browser; | 45 class Browser; |
47 class ExternalTabContainer; | 46 class ExternalTabContainer; |
48 class FilePath; | 47 class FilePath; |
49 class FindInPageNotificationObserver; | 48 class FindInPageNotificationObserver; |
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
365 std::string channel_id_; | 364 std::string channel_id_; |
366 | 365 |
367 // Trace data that has been collected but not flushed to the automation | 366 // Trace data that has been collected but not flushed to the automation |
368 // client. | 367 // client. |
369 TracingData tracing_data_; | 368 TracingData tracing_data_; |
370 | 369 |
371 DISALLOW_COPY_AND_ASSIGN(AutomationProvider); | 370 DISALLOW_COPY_AND_ASSIGN(AutomationProvider); |
372 }; | 371 }; |
373 | 372 |
374 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_H_ | 373 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_H_ |
OLD | NEW |