Index: content/browser/browser_plugin/browser_plugin_host_role.h |
diff --git a/content/browser/browser_plugin/browser_plugin_host_role.h b/content/browser/browser_plugin/browser_plugin_host_role.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..9e738658ea1f74219ee3f32b52e312b7c95da509 |
--- /dev/null |
+++ b/content/browser/browser_plugin/browser_plugin_host_role.h |
@@ -0,0 +1,22 @@ |
+// Copyright (c) 2012 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 CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_HOST_ROLE_H_ |
+#define CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_HOST_ROLE_H_ |
+ |
+namespace content { |
+ |
+// Base class for browser plugin host role. |
rjkroege
2012/08/22 21:57:38
Need more text. :-)
lazyboy
2012/08/23 00:45:22
Done.
|
+class BrowserPluginHostRole { |
+ public: |
+ BrowserPluginHostRole() {} |
+ virtual ~BrowserPluginHostRole() {} |
+ |
+ private: |
+ DISALLOW_COPY_AND_ASSIGN(BrowserPluginHostRole); |
+}; |
+ |
+} // namespace content |
+ |
+#endif // CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_HOST_ROLE_H_ |