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

Side by Side Diff: chrome/renderer/automation/automation_renderer_helper.cc

Issue 11833008: Update some #includes in chrome/renderer/automation/ for headers in the new Platform directory (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 11 months 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/renderer/automation/automation_renderer_helper_browsertest.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) 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 #include "chrome/renderer/automation/automation_renderer_helper.h" 5 #include "chrome/renderer/automation/automation_renderer_helper.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/json/json_writer.h" 10 #include "base/json/json_writer.h"
11 #include "base/stringprintf.h" 11 #include "base/stringprintf.h"
12 #include "base/string_split.h" 12 #include "base/string_split.h"
13 #include "base/utf_string_conversions.h" 13 #include "base/utf_string_conversions.h"
14 #include "base/values.h" 14 #include "base/values.h"
15 #include "chrome/common/automation_events.h" 15 #include "chrome/common/automation_events.h"
16 #include "chrome/common/automation_messages.h" 16 #include "chrome/common/automation_messages.h"
17 #include "content/public/renderer/render_view.h" 17 #include "content/public/renderer/render_view.h"
18 #include "content/public/renderer/v8_value_converter.h" 18 #include "content/public/renderer/v8_value_converter.h"
19 #include "ipc/ipc_channel.h" 19 #include "ipc/ipc_channel.h"
20 #include "ipc/ipc_message.h" 20 #include "ipc/ipc_message.h"
21 #include "skia/ext/platform_canvas.h" 21 #include "skia/ext/platform_canvas.h"
22 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSize.h" 22 #include "third_party/WebKit/Source/Platform/chromium/public/WebSize.h"
23 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURL.h" 23 #include "third_party/WebKit/Source/Platform/chromium/public/WebURL.h"
24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" 24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
25 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" 25 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h"
26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScriptSource.h" 26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScriptSource.h"
27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" 27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
28 #include "ui/gfx/codec/png_codec.h" 28 #include "ui/gfx/codec/png_codec.h"
29 #include "ui/gfx/point.h" 29 #include "ui/gfx/point.h"
30 #include "ui/gfx/rect.h" 30 #include "ui/gfx/rect.h"
31 #include "v8/include/v8.h" 31 #include "v8/include/v8.h"
32 #include "webkit/glue/webkit_glue.h" 32 #include "webkit/glue/webkit_glue.h"
33 33
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 routing_id(), frame->identifier())); 281 routing_id(), frame->identifier()));
282 } 282 }
283 283
284 void AutomationRendererHelper::OnProcessMouseEvent( 284 void AutomationRendererHelper::OnProcessMouseEvent(
285 const AutomationMouseEvent& event) { 285 const AutomationMouseEvent& event) {
286 std::string error_msg; 286 std::string error_msg;
287 bool success = ProcessMouseEvent(event, &error_msg); 287 bool success = ProcessMouseEvent(event, &error_msg);
288 Send(new AutomationMsg_ProcessMouseEventACK( 288 Send(new AutomationMsg_ProcessMouseEventACK(
289 routing_id(), success, error_msg)); 289 routing_id(), success, error_msg));
290 } 290 }
OLDNEW
« no previous file with comments | « no previous file | chrome/renderer/automation/automation_renderer_helper_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698