diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-31 13:55:01 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-31 13:55:01 +0000 |
commit | ae7f55836f087870e3e2542493d902acfade85e2 (patch) | |
tree | cdf6bf8ed92802ffa44151c641c24f1ddb999a1d /chrome/common/chrome_content_plugin_client.h | |
parent | 089bda66f423cfac13dcd22fd5c1f187524f12a5 (diff) | |
download | chromium_src-ae7f55836f087870e3e2542493d902acfade85e2.zip chromium_src-ae7f55836f087870e3e2542493d902acfade85e2.tar.gz chromium_src-ae7f55836f087870e3e2542493d902acfade85e2.tar.bz2 |
Use OVERRIDE for the ContentClients.
BUG=none
TEST=no build change
Review URL: http://codereview.chromium.org/7086010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@87303 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/chrome_content_plugin_client.h')
-rw-r--r-- | chrome/common/chrome_content_plugin_client.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/common/chrome_content_plugin_client.h b/chrome/common/chrome_content_plugin_client.h index 6b6554b..40e6df3 100644 --- a/chrome/common/chrome_content_plugin_client.h +++ b/chrome/common/chrome_content_plugin_client.h @@ -6,13 +6,14 @@ #define CHROME_COMMON_CHROME_CONTENT_PLUGIN_CLIENT_H_ #pragma once +#include "base/compiler_specific.h" #include "content/plugin/content_plugin_client.h" namespace chrome { class ChromeContentPluginClient : public content::ContentPluginClient { public: - virtual void PluginProcessStarted(const string16& plugin_name); + virtual void PluginProcessStarted(const string16& plugin_name) OVERRIDE; }; } // namespace chrome |