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

Unified Diff: extensions/shell/common/shell_content_client.h

Issue 437503004: Add NaCl support to app_shell (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: (nacl-init) rebase Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « extensions/shell/common/DEPS ('k') | extensions/shell/common/shell_content_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « extensions/shell/common/DEPS ('k') | extensions/shell/common/shell_content_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698