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

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

Issue 10532162: Rename IPC Sender and Listener in ppapi, content/public, and content/renderer (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 6 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
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"
20 #include "ipc/ipc_message.h"
19 #include "skia/ext/platform_canvas.h" 21 #include "skia/ext/platform_canvas.h"
20 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSize.h" 22 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSize.h"
21 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURL.h" 23 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURL.h"
22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" 24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" 25 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h"
24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScriptSource.h" 26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScriptSource.h"
25 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" 27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
26 #include "ui/gfx/codec/png_codec.h" 28 #include "ui/gfx/codec/png_codec.h"
27 #include "ui/gfx/point.h" 29 #include "ui/gfx/point.h"
28 #include "ui/gfx/rect.h" 30 #include "ui/gfx/rect.h"
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 routing_id(), frame->identifier())); 281 routing_id(), frame->identifier()));
280 } 282 }
281 283
282 void AutomationRendererHelper::OnProcessMouseEvent( 284 void AutomationRendererHelper::OnProcessMouseEvent(
283 const AutomationMouseEvent& event) { 285 const AutomationMouseEvent& event) {
284 std::string error_msg; 286 std::string error_msg;
285 bool success = ProcessMouseEvent(event, &error_msg); 287 bool success = ProcessMouseEvent(event, &error_msg);
286 Send(new AutomationMsg_ProcessMouseEventACK( 288 Send(new AutomationMsg_ProcessMouseEventACK(
287 routing_id(), success, error_msg)); 289 routing_id(), success, error_msg));
288 } 290 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/constrained_web_dialog_delegate_base.cc ('k') | chrome/renderer/prerender/prerenderer_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698