summaryrefslogtreecommitdiffstats
path: root/chrome/common/chrome_content_client.h
diff options
context:
space:
mode:
authormichaeln@google.com <michaeln@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-20 00:57:39 +0000
committermichaeln@google.com <michaeln@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-20 00:57:39 +0000
commit5af15b4961481876c87f5a32e0f50df8e7d060ce (patch)
tree12a79f7ad5d948f7bfa50a3dc7e05220ced4edac /chrome/common/chrome_content_client.h
parentdb4fd48ab5672dd485f8510a69d495bbb327fc4d (diff)
downloadchromium_src-5af15b4961481876c87f5a32e0f50df8e7d060ce.zip
chromium_src-5af15b4961481876c87f5a32e0f50df8e7d060ce.tar.gz
chromium_src-5af15b4961481876c87f5a32e0f50df8e7d060ce.tar.bz2
Get chrome:// dev tool urls hooked up in content_shell.
Review URL: https://chromiumcodereview.appspot.com/9950040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133107 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/chrome_content_client.h')
-rw-r--r--chrome/common/chrome_content_client.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/common/chrome_content_client.h b/chrome/common/chrome_content_client.h
index 1d840d4..9974969 100644
--- a/chrome/common/chrome_content_client.h
+++ b/chrome/common/chrome_content_client.h
@@ -6,6 +6,9 @@
#define CHROME_COMMON_CHROME_CONTENT_CLIENT_H_
#pragma once
+#include <string>
+#include <vector>
+
#include "base/compiler_specific.h"
#include "content/public/common/content_client.h"
@@ -23,6 +26,9 @@ class ChromeContentClient : public content::ContentClient {
std::vector<content::PepperPluginInfo>* plugins) OVERRIDE;
virtual void AddNPAPIPlugins(
webkit::npapi::PluginList* plugin_list) OVERRIDE;
+ virtual void AddAdditionalSchemes(
+ std::vector<std::string>* standard_schemes,
+ std::vector<std::string>* saveable_shemes) OVERRIDE;
virtual bool HasWebUIScheme(const GURL& url) const OVERRIDE;
virtual bool CanHandleWhileSwappedOut(const IPC::Message& msg) OVERRIDE;
virtual std::string GetUserAgent() const OVERRIDE;