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 17 matching lines...) Expand all Loading... |
28 #include "chrome/common/content_settings.h" | 28 #include "chrome/common/content_settings.h" |
29 #include "content/browser/cancelable_request.h" | 29 #include "content/browser/cancelable_request.h" |
30 #include "content/browser/tab_contents/navigation_entry.h" | 30 #include "content/browser/tab_contents/navigation_entry.h" |
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 "ui/views/events/event.h" |
39 #endif // defined(OS_WIN) && !defined(USE_AURA) | 39 #endif // defined(OS_WIN) && !defined(USE_AURA) |
40 | 40 |
41 class TabContents; | 41 class TabContents; |
42 struct AutomationMsg_Find_Params; | 42 struct AutomationMsg_Find_Params; |
43 struct Reposition_Params; | 43 struct Reposition_Params; |
44 struct ExternalTabSettings; | 44 struct ExternalTabSettings; |
45 | 45 |
46 namespace IPC { | 46 namespace IPC { |
47 class ChannelProxy; | 47 class ChannelProxy; |
48 } | 48 } |
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
408 std::string channel_id_; | 408 std::string channel_id_; |
409 | 409 |
410 // 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 |
411 // client. | 411 // client. |
412 TracingData tracing_data_; | 412 TracingData tracing_data_; |
413 | 413 |
414 DISALLOW_COPY_AND_ASSIGN(AutomationProvider); | 414 DISALLOW_COPY_AND_ASSIGN(AutomationProvider); |
415 }; | 415 }; |
416 | 416 |
417 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_H_ | 417 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_H_ |
OLD | NEW |