| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_PLUGINS_CHROME_CONTENT_BROWSER_CLIENT_PLUGINS_PART_H_ | 5 #ifndef CHROME_BROWSER_PLUGINS_CHROME_CONTENT_BROWSER_CLIENT_PLUGINS_PART_H_ |
| 6 #define CHROME_BROWSER_PLUGINS_CHROME_CONTENT_BROWSER_CLIENT_PLUGINS_PART_H_ | 6 #define CHROME_BROWSER_PLUGINS_CHROME_CONTENT_BROWSER_CLIENT_PLUGINS_PART_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" |
| 8 #include "chrome/browser/chrome_content_browser_client_parts.h" | 9 #include "chrome/browser/chrome_content_browser_client_parts.h" |
| 9 #include "content/public/browser/browser_ppapi_host.h" | 10 #include "content/public/browser/browser_ppapi_host.h" |
| 10 #include "content/public/common/socket_permission_request.h" | 11 #include "content/public/common/socket_permission_request.h" |
| 11 | 12 |
| 12 namespace plugins { | 13 namespace plugins { |
| 13 | 14 |
| 14 // Implements the plugins portion of ChromeContentBrowserClient. | 15 // Implements the plugins portion of ChromeContentBrowserClient. |
| 15 class ChromeContentBrowserClientPluginsPart | 16 class ChromeContentBrowserClientPluginsPart |
| 16 : public ChromeContentBrowserClientParts { | 17 : public ChromeContentBrowserClientParts { |
| 17 public: | 18 public: |
| (...skipping 23 matching lines...) Expand all Loading... |
| 41 private: | 42 private: |
| 42 // ChromeContentBrowserClientParts: | 43 // ChromeContentBrowserClientParts: |
| 43 void RenderProcessWillLaunch(content::RenderProcessHost* host) override; | 44 void RenderProcessWillLaunch(content::RenderProcessHost* host) override; |
| 44 | 45 |
| 45 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClientPluginsPart); | 46 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClientPluginsPart); |
| 46 }; | 47 }; |
| 47 | 48 |
| 48 } // namespace plugins | 49 } // namespace plugins |
| 49 | 50 |
| 50 #endif // CHROME_BROWSER_PLUGINS_CHROME_CONTENT_BROWSER_CLIENT_PLUGINS_PART_H_ | 51 #endif // CHROME_BROWSER_PLUGINS_CHROME_CONTENT_BROWSER_CLIENT_PLUGINS_PART_H_ |
| OLD | NEW |