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

Side by Side Diff: content/public/renderer/content_renderer_client.cc

Issue 12335128: Switch from using individual methods for hyphenation to using the WebHyphantor interface (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updates Created 7 years, 9 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
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/public/renderer/content_renderer_client.h" 5 #include "content/public/renderer/content_renderer_client.h"
6 6
7 namespace content { 7 namespace content {
8 8
9 SkBitmap* ContentRendererClient::GetSadPluginBitmap() { 9 SkBitmap* ContentRendererClient::GetSadPluginBitmap() {
10 return NULL; 10 return NULL;
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 WebKit::WebRTCPeerConnectionHandler* 56 WebKit::WebRTCPeerConnectionHandler*
57 ContentRendererClient::OverrideCreateWebRTCPeerConnectionHandler( 57 ContentRendererClient::OverrideCreateWebRTCPeerConnectionHandler(
58 WebKit::WebRTCPeerConnectionHandlerClient* client) { 58 WebKit::WebRTCPeerConnectionHandlerClient* client) {
59 return NULL; 59 return NULL;
60 } 60 }
61 61
62 WebKit::WebClipboard* ContentRendererClient::OverrideWebClipboard() { 62 WebKit::WebClipboard* ContentRendererClient::OverrideWebClipboard() {
63 return NULL; 63 return NULL;
64 } 64 }
65 65
66 WebKit::WebHyphenator* ContentRendererClient::OverrideWebHyphenator() {
67 return NULL;
68 }
69
66 bool ContentRendererClient::RunIdleHandlerWhenWidgetsHidden() { 70 bool ContentRendererClient::RunIdleHandlerWhenWidgetsHidden() {
67 return true; 71 return true;
68 } 72 }
69 73
70 bool ContentRendererClient::AllowPopup() { 74 bool ContentRendererClient::AllowPopup() {
71 return false; 75 return false;
72 } 76 }
73 77
74 bool ContentRendererClient::HandleNavigation( 78 bool ContentRendererClient::HandleNavigation(
75 WebKit::WebFrame* frame, 79 WebKit::WebFrame* frame,
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 130
127 bool ContentRendererClient::HandleSetCookieRequest( 131 bool ContentRendererClient::HandleSetCookieRequest(
128 RenderView* sender, 132 RenderView* sender,
129 const GURL& url, 133 const GURL& url,
130 const GURL& first_party_for_cookies, 134 const GURL& first_party_for_cookies,
131 const std::string& value) { 135 const std::string& value) {
132 return false; 136 return false;
133 } 137 }
134 138
135 } // namespace content 139 } // namespace content
OLDNEW
« no previous file with comments | « content/public/renderer/content_renderer_client.h ('k') | content/renderer/renderer_webkitplatformsupport_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698