OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_HOST_ROLE_H_ |
| 6 #define CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_HOST_ROLE_H_ |
| 7 |
| 8 namespace content { |
| 9 |
| 10 // Base class for browser plugin host role. A WebContents having a (concrete |
| 11 // implementation of) role means it can operate in that role, roles can be |
| 12 // dynamically added. |
| 13 class BrowserPluginHostRole { |
| 14 public: |
| 15 BrowserPluginHostRole() {} |
| 16 virtual ~BrowserPluginHostRole() {} |
| 17 |
| 18 private: |
| 19 DISALLOW_COPY_AND_ASSIGN(BrowserPluginHostRole); |
| 20 }; |
| 21 |
| 22 } // namespace content |
| 23 |
| 24 #endif // CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_HOST_ROLE_H_ |
OLD | NEW |