| Index: extensions/shell/common/shell_content_client.h
|
| diff --git a/extensions/shell/common/shell_content_client.h b/extensions/shell/common/shell_content_client.h
|
| index f0a722e0a0d993c3060456b278f9e97979f94b56..d3583e247bc7d32e70b538da9d5e72296417f85c 100644
|
| --- a/extensions/shell/common/shell_content_client.h
|
| +++ b/extensions/shell/common/shell_content_client.h
|
| @@ -6,6 +6,7 @@
|
| #define EXTENSIONS_SHELL_COMMON_SHELL_CONTENT_CLIENT_H_
|
|
|
| #include "base/compiler_specific.h"
|
| +#include "base/macros.h"
|
| #include "content/public/common/content_client.h"
|
|
|
| namespace extensions {
|
| @@ -15,6 +16,8 @@ class ShellContentClient : public content::ContentClient {
|
| ShellContentClient();
|
| virtual ~ShellContentClient();
|
|
|
| + virtual void AddPepperPlugins(
|
| + std::vector<content::PepperPluginInfo>* plugins) OVERRIDE;
|
| virtual void AddAdditionalSchemes(
|
| std::vector<std::string>* standard_schemes,
|
| std::vector<std::string>* saveable_shemes) OVERRIDE;
|
| @@ -26,6 +29,9 @@ class ShellContentClient : public content::ContentClient {
|
| virtual base::RefCountedStaticMemory* GetDataResourceBytes(
|
| int resource_id) const OVERRIDE;
|
| virtual gfx::Image& GetNativeImageNamed(int resource_id) const OVERRIDE;
|
| +
|
| + private:
|
| + DISALLOW_COPY_AND_ASSIGN(ShellContentClient);
|
| };
|
|
|
| } // namespace extensions
|
|
|