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

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

Issue 6765011: Move the dispatching of extension messages out of RenderThread. This also moves a bunch of exten... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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
« no previous file with comments | « content/renderer/content_renderer_client.h ('k') | content/renderer/render_process_observer.h » ('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 #include "content/renderer/content_renderer_client.h" 5 #include "content/renderer/content_renderer_client.h"
6 6
7 #include "content/renderer/render_view.h" 7 #include "content/renderer/render_view.h"
8 8
9 namespace content { 9 namespace content {
10 10
(...skipping 15 matching lines...) Expand all
26 std::string ContentRendererClient::GetNavigationErrorHtml( 26 std::string ContentRendererClient::GetNavigationErrorHtml(
27 const WebKit::WebURLRequest& failed_request, 27 const WebKit::WebURLRequest& failed_request,
28 const WebKit::WebURLError& error) { 28 const WebKit::WebURLError& error) {
29 return std::string(); 29 return std::string();
30 } 30 }
31 31
32 std::string ContentRendererClient::DetermineTextLanguage(const string16& text) { 32 std::string ContentRendererClient::DetermineTextLanguage(const string16& text) {
33 return std::string(); 33 return std::string();
34 } 34 }
35 35
36 bool ContentRendererClient::RunIdleHandlerWhenWidgetsHidden() {
37 return true;
38 }
39
40 bool ContentRendererClient::AllowPopup(const GURL& creator) {
41 return false;
42 }
43
36 } // namespace content 44 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/content_renderer_client.h ('k') | content/renderer/render_process_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698