| 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 15 matching lines...) Expand all Loading... |
| 26 #include "chrome/browser/common/cancelable_request.h" | 26 #include "chrome/browser/common/cancelable_request.h" |
| 27 #include "chrome/common/automation_constants.h" | 27 #include "chrome/common/automation_constants.h" |
| 28 #include "chrome/common/content_settings.h" | 28 #include "chrome/common/content_settings.h" |
| 29 #include "components/autofill/core/browser/field_types.h" | 29 #include "components/autofill/core/browser/field_types.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 "ipc/ipc_channel.h" | 32 #include "ipc/ipc_channel.h" |
| 33 #include "ipc/ipc_listener.h" | 33 #include "ipc/ipc_listener.h" |
| 34 #include "ipc/ipc_sender.h" | 34 #include "ipc/ipc_sender.h" |
| 35 | 35 |
| 36 #if defined(OS_WIN) && !defined(USE_AURA) | |
| 37 #include "ui/gfx/native_widget_types.h" | |
| 38 #endif // defined(OS_WIN) && !defined(USE_AURA) | |
| 39 | |
| 40 class AutomationBrowserTracker; | 36 class AutomationBrowserTracker; |
| 41 class AutomationTabTracker; | 37 class AutomationTabTracker; |
| 42 class AutomationWindowTracker; | 38 class AutomationWindowTracker; |
| 43 class Browser; | 39 class Browser; |
| 44 class ExternalTabContainer; | 40 class ExternalTabContainer; |
| 45 class FindInPageNotificationObserver; | 41 class FindInPageNotificationObserver; |
| 46 class InitialLoadObserver; | 42 class InitialLoadObserver; |
| 47 class LoginHandler; | 43 class LoginHandler; |
| 48 class MetricEventDurationObserver; | 44 class MetricEventDurationObserver; |
| 49 class NavigationControllerRestoredObserver; | 45 class NavigationControllerRestoredObserver; |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 // True iff ChromeOS webui login ui is ready. | 259 // True iff ChromeOS webui login ui is ready. |
| 264 bool login_webui_ready_; | 260 bool login_webui_ready_; |
| 265 | 261 |
| 266 // ID of automation channel. | 262 // ID of automation channel. |
| 267 std::string channel_id_; | 263 std::string channel_id_; |
| 268 | 264 |
| 269 DISALLOW_COPY_AND_ASSIGN(AutomationProvider); | 265 DISALLOW_COPY_AND_ASSIGN(AutomationProvider); |
| 270 }; | 266 }; |
| 271 | 267 |
| 272 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_H_ | 268 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_H_ |
| OLD | NEW |