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

Side by Side Diff: content/renderer/render_view_impl_android.cc

Issue 260623004: Fix to remove customised String over IPC for SmartClip (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: changed definition of OnSmartClipDataExtracted in cc file Created 6 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
« no previous file with comments | « content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java ('k') | no next file » | 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 "content/renderer/render_view_impl.h" 5 #include "content/renderer/render_view_impl.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/message_loop/message_loop.h" 8 #include "base/message_loop/message_loop.h"
9 #include "cc/trees/layer_tree_host.h" 9 #include "cc/trees/layer_tree_host.h"
10 #include "content/common/view_messages.h" 10 #include "content/common/view_messages.h"
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 return; 58 return;
59 if (compositor_) { 59 if (compositor_) {
60 cc::TopControlsState current = delta.height < 0 ? cc::SHOWN : cc::HIDDEN; 60 cc::TopControlsState current = delta.height < 0 ? cc::SHOWN : cc::HIDDEN;
61 compositor_->UpdateTopControlsState(top_controls_constraints_, 61 compositor_->UpdateTopControlsState(top_controls_constraints_,
62 current, 62 current,
63 true); 63 true);
64 } 64 }
65 } 65 }
66 66
67 void RenderViewImpl::OnExtractSmartClipData(const gfx::Rect& rect) { 67 void RenderViewImpl::OnExtractSmartClipData(const gfx::Rect& rect) {
68 blink::WebString clip_text;
69 blink::WebRect clip_rect;
70 webview()->getSmartClipData(rect, clip_text, clip_rect);
68 Send(new ViewHostMsg_SmartClipDataExtracted( 71 Send(new ViewHostMsg_SmartClipDataExtracted(
69 routing_id_, webview()->getSmartClipData(rect))); 72 routing_id_, clip_text, clip_rect));
70 } 73 }
71 74
72 } // namespace content 75 } // namespace content
OLDNEW
« no previous file with comments | « content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698