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

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

Issue 8566052: views: Delete bubble, events, focus, layout directories and its stubbed files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win Created 9 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 | « no previous file | chrome/browser/automation/automation_provider_win.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) 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
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
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_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/automation/automation_provider_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698