| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 14 matching lines...) Expand all Loading... |
| 25 #include "chrome/browser/browser_thread.h" | 25 #include "chrome/browser/browser_thread.h" |
| 26 #include "chrome/browser/cancelable_request.h" | 26 #include "chrome/browser/cancelable_request.h" |
| 27 #include "chrome/browser/tab_contents/navigation_entry.h" | 27 #include "chrome/browser/tab_contents/navigation_entry.h" |
| 28 #include "chrome/common/automation_constants.h" | 28 #include "chrome/common/automation_constants.h" |
| 29 #include "chrome/common/content_settings.h" | 29 #include "chrome/common/content_settings.h" |
| 30 #include "chrome/common/notification_observer.h" | 30 #include "chrome/common/notification_observer.h" |
| 31 #include "ipc/ipc_message.h" | 31 #include "ipc/ipc_message.h" |
| 32 #include "ipc/ipc_channel.h" | 32 #include "ipc/ipc_channel.h" |
| 33 | 33 |
| 34 #if defined(OS_WIN) | 34 #if defined(OS_WIN) |
| 35 #include "gfx/native_widget_types.h" | 35 #include "ui/gfx/native_widget_types.h" |
| 36 #include "views/event.h" | 36 #include "views/event.h" |
| 37 #endif // defined(OS_WIN) | 37 #endif // defined(OS_WIN) |
| 38 | 38 |
| 39 class PopupMenuWaiter; | 39 class PopupMenuWaiter; |
| 40 class TabContents; | 40 class TabContents; |
| 41 struct AutomationMsg_Find_Params; | 41 struct AutomationMsg_Find_Params; |
| 42 struct Reposition_Params; | 42 struct Reposition_Params; |
| 43 struct ExternalTabSettings; | 43 struct ExternalTabSettings; |
| 44 | 44 |
| 45 namespace IPC { | 45 namespace IPC { |
| (...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 // True iff connected to an AutomationProxy. | 417 // True iff connected to an AutomationProxy. |
| 418 bool is_connected_; | 418 bool is_connected_; |
| 419 | 419 |
| 420 // True iff browser finished loading initial set of tabs. | 420 // True iff browser finished loading initial set of tabs. |
| 421 bool initial_loads_complete_; | 421 bool initial_loads_complete_; |
| 422 | 422 |
| 423 DISALLOW_COPY_AND_ASSIGN(AutomationProvider); | 423 DISALLOW_COPY_AND_ASSIGN(AutomationProvider); |
| 424 }; | 424 }; |
| 425 | 425 |
| 426 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_H_ | 426 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_H_ |
| OLD | NEW |