summaryrefslogtreecommitdiffstats
path: root/chrome/plugin/chrome_content_plugin_client.h
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-30 23:09:30 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-30 23:09:30 +0000
commit4a68c9ef3c575519b757581a3c9dca94140eb15c (patch)
tree00bb69a521626901bf848293e2bcbb7836dd479a /chrome/plugin/chrome_content_plugin_client.h
parenta6adbe56f4f0e7482d4f553fc93a195d57ad5c91 (diff)
downloadchromium_src-4a68c9ef3c575519b757581a3c9dca94140eb15c.zip
chromium_src-4a68c9ef3c575519b757581a3c9dca94140eb15c.tar.gz
chromium_src-4a68c9ef3c575519b757581a3c9dca94140eb15c.tar.bz2
Clean up DEPS rules against content so that not all chrome code can include anything from content.
I also moved ChromeContentPluginClient to chrome\plugin where it really belongs (i.e. to match what we do with the utility client). Review URL: http://codereview.chromium.org/8095011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103569 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/plugin/chrome_content_plugin_client.h')
-rw-r--r--chrome/plugin/chrome_content_plugin_client.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/chrome/plugin/chrome_content_plugin_client.h b/chrome/plugin/chrome_content_plugin_client.h
new file mode 100644
index 0000000..b743660
--- /dev/null
+++ b/chrome/plugin/chrome_content_plugin_client.h
@@ -0,0 +1,21 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_PLUGIN_CHROME_CONTENT_PLUGIN_CLIENT_H_
+#define CHROME_PLUGIN_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) OVERRIDE;
+};
+
+} // namespace chrome
+
+#endif // CHROME_PLUGIN_CHROME_CONTENT_PLUGIN_CLIENT_H_