Index: chrome/common/chrome_content_client.h |
=================================================================== |
--- chrome/common/chrome_content_client.h (revision 133033) |
+++ chrome/common/chrome_content_client.h (working copy) |
@@ -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 @@ |
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; |