Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(49)

Side by Side Diff: chrome/browser/automation/automation_provider.h

Issue 4758001: Part 2 of reapplying r64637. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Window recompile after rebase? Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ceee/ie/plugin/toolband/tool_band.cc ('k') | chrome/browser/automation/automation_provider.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
11 #ifndef CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_H_ 11 #ifndef CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_H_
12 #define CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_H_ 12 #define CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_H_
13 #pragma once 13 #pragma once
14 14
15 #include <map> 15 #include <map>
16 #include <string> 16 #include <string>
17 #include <vector> 17 #include <vector>
18 18
19 #include "base/basictypes.h" 19 #include "base/basictypes.h"
20 #include "base/observer_list.h" 20 #include "base/observer_list.h"
21 #include "base/scoped_ptr.h" 21 #include "base/scoped_ptr.h"
22 #include "base/string16.h" 22 #include "base/string16.h"
23 #include "chrome/browser/autofill/field_types.h" 23 #include "chrome/browser/autofill/field_types.h"
24 #include "chrome/browser/cancelable_request.h" 24 #include "chrome/browser/cancelable_request.h"
25 #include "chrome/browser/tab_contents/navigation_entry.h" 25 #include "chrome/browser/tab_contents/navigation_entry.h"
26 #include "chrome/common/automation_constants.h"
26 #include "chrome/common/content_settings.h" 27 #include "chrome/common/content_settings.h"
27 #include "chrome/common/notification_observer.h" 28 #include "chrome/common/notification_observer.h"
28 #include "chrome/test/automation/automation_constants.h"
29 #include "ipc/ipc_message.h" 29 #include "ipc/ipc_message.h"
30 #include "ipc/ipc_channel.h" 30 #include "ipc/ipc_channel.h"
31 #if defined(OS_WIN) 31 #if defined(OS_WIN)
32 #include "gfx/native_widget_types.h" 32 #include "gfx/native_widget_types.h"
33 #include "views/event.h" 33 #include "views/event.h"
34 #endif // defined(OS_WIN) 34 #endif // defined(OS_WIN)
35 35
36 struct AutomationMsg_Find_Params; 36 struct AutomationMsg_Find_Params;
37 class PopupMenuWaiter; 37 class PopupMenuWaiter;
38 class TabContents; 38 class TabContents;
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 scoped_ptr<NotificationObserver> dom_inspector_observer_; 403 scoped_ptr<NotificationObserver> dom_inspector_observer_;
404 scoped_ptr<ExtensionTestResultNotificationObserver> 404 scoped_ptr<ExtensionTestResultNotificationObserver>
405 extension_test_result_observer_; 405 extension_test_result_observer_;
406 scoped_ptr<AutomationExtensionTracker> extension_tracker_; 406 scoped_ptr<AutomationExtensionTracker> extension_tracker_;
407 PortContainerMap port_containers_; 407 PortContainerMap port_containers_;
408 408
409 DISALLOW_COPY_AND_ASSIGN(AutomationProvider); 409 DISALLOW_COPY_AND_ASSIGN(AutomationProvider);
410 }; 410 };
411 411
412 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_H_ 412 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_H_
OLDNEW
« no previous file with comments | « ceee/ie/plugin/toolband/tool_band.cc ('k') | chrome/browser/automation/automation_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698