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

Side by Side Diff: chrome/renderer/chrome_content_renderer_client.cc

Issue 10920033: Implement Android WebView BlockNetworkImages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update ContentSetting to new locking semantics. Add a test that does not require http server. Created 8 years, 3 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 "chrome/renderer/chrome_content_renderer_client.h" 5 #include "chrome/renderer/chrome_content_renderer_client.h"
6 6
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 #include "chrome/renderer/print_web_view_helper.h" 59 #include "chrome/renderer/print_web_view_helper.h"
60 #include "chrome/renderer/safe_browsing/malware_dom_details.h" 60 #include "chrome/renderer/safe_browsing/malware_dom_details.h"
61 #include "chrome/renderer/safe_browsing/phishing_classifier_delegate.h" 61 #include "chrome/renderer/safe_browsing/phishing_classifier_delegate.h"
62 #include "chrome/renderer/searchbox/searchbox.h" 62 #include "chrome/renderer/searchbox/searchbox.h"
63 #include "chrome/renderer/searchbox/searchbox_extension.h" 63 #include "chrome/renderer/searchbox/searchbox_extension.h"
64 #include "chrome/renderer/spellchecker/spellcheck.h" 64 #include "chrome/renderer/spellchecker/spellcheck.h"
65 #include "chrome/renderer/spellchecker/spellcheck_provider.h" 65 #include "chrome/renderer/spellchecker/spellcheck_provider.h"
66 #include "chrome/renderer/translate_helper.h" 66 #include "chrome/renderer/translate_helper.h"
67 #include "chrome/renderer/visitedlink_slave.h" 67 #include "chrome/renderer/visitedlink_slave.h"
68 #include "content/public/common/content_constants.h" 68 #include "content/public/common/content_constants.h"
69 #include "content/public/common/url_constants.h"
69 #include "content/public/renderer/render_thread.h" 70 #include "content/public/renderer/render_thread.h"
70 #include "content/public/renderer/render_view.h" 71 #include "content/public/renderer/render_view.h"
71 #include "grit/generated_resources.h" 72 #include "grit/generated_resources.h"
72 #include "grit/locale_settings.h" 73 #include "grit/locale_settings.h"
73 #include "grit/renderer_resources.h" 74 #include "grit/renderer_resources.h"
74 #include "ipc/ipc_sync_channel.h" 75 #include "ipc/ipc_sync_channel.h"
75 #include "net/base/net_errors.h" 76 #include "net/base/net_errors.h"
76 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCache.h" 77 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCache.h"
77 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h" 78 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h"
78 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" 79 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h"
(...skipping 880 matching lines...) Expand 10 before | Expand all | Expand 10 after
959 bool ChromeContentRendererClient::IsOtherExtensionWithWebRequestInstalled() { 960 bool ChromeContentRendererClient::IsOtherExtensionWithWebRequestInstalled() {
960 return extension_dispatcher_->IsOtherExtensionWithWebRequestInstalled(); 961 return extension_dispatcher_->IsOtherExtensionWithWebRequestInstalled();
961 } 962 }
962 963
963 void ChromeContentRendererClient::RegisterPPAPIInterfaceFactories( 964 void ChromeContentRendererClient::RegisterPPAPIInterfaceFactories(
964 webkit::ppapi::PpapiInterfaceFactoryManager* factory_manager) { 965 webkit::ppapi::PpapiInterfaceFactoryManager* factory_manager) {
965 factory_manager->RegisterFactory(ChromePPAPIInterfaceFactory); 966 factory_manager->RegisterFactory(ChromePPAPIInterfaceFactory);
966 } 967 }
967 968
968 } // namespace chrome 969 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698