| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_RENDERER_CONNECTION_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_RENDERER_CONNECTION_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_RENDERER_CONNECTION_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_RENDERER_CONNECTION_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 | 29 |
| 30 // This class represents a connection from the browser to the renderer for | 30 // This class represents a connection from the browser to the renderer for |
| 31 // sending/receiving pepper ResourceHost related messages. When the browser | 31 // sending/receiving pepper ResourceHost related messages. When the browser |
| 32 // and renderer communicate about ResourceHosts, they should pass the plugin | 32 // and renderer communicate about ResourceHosts, they should pass the plugin |
| 33 // process ID to identify which plugin they are talking about. | 33 // process ID to identify which plugin they are talking about. |
| 34 class PepperRendererConnection : public BrowserMessageFilter { | 34 class PepperRendererConnection : public BrowserMessageFilter { |
| 35 public: | 35 public: |
| 36 explicit PepperRendererConnection(int render_process_id); | 36 explicit PepperRendererConnection(int render_process_id); |
| 37 | 37 |
| 38 // BrowserMessageFilter overrides. | 38 // BrowserMessageFilter overrides. |
| 39 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; | 39 virtual bool OnMessageReceived(const IPC::Message& msg) override; |
| 40 | 40 |
| 41 private: | 41 private: |
| 42 virtual ~PepperRendererConnection(); | 42 virtual ~PepperRendererConnection(); |
| 43 | 43 |
| 44 // Returns the host for the child process for the given |child_process_id|. | 44 // Returns the host for the child process for the given |child_process_id|. |
| 45 // If |child_process_id| is 0, returns the host owned by this | 45 // If |child_process_id| is 0, returns the host owned by this |
| 46 // PepperRendererConnection, which serves as the host for in-process plugins. | 46 // PepperRendererConnection, which serves as the host for in-process plugins. |
| 47 BrowserPpapiHostImpl* GetHostForChildProcess(int child_process_id) const; | 47 BrowserPpapiHostImpl* GetHostForChildProcess(int child_process_id) const; |
| 48 | 48 |
| 49 void OnMsgCreateResourceHostsFromHost( | 49 void OnMsgCreateResourceHostsFromHost( |
| (...skipping 15 matching lines...) Expand all Loading... |
| 65 // with the browser when running in-process but it means that plugin-specific | 65 // with the browser when running in-process but it means that plugin-specific |
| 66 // information (like the plugin name) won't be available. | 66 // information (like the plugin name) won't be available. |
| 67 scoped_ptr<BrowserPpapiHostImpl> in_process_host_; | 67 scoped_ptr<BrowserPpapiHostImpl> in_process_host_; |
| 68 | 68 |
| 69 DISALLOW_COPY_AND_ASSIGN(PepperRendererConnection); | 69 DISALLOW_COPY_AND_ASSIGN(PepperRendererConnection); |
| 70 }; | 70 }; |
| 71 | 71 |
| 72 } // namespace content | 72 } // namespace content |
| 73 | 73 |
| 74 #endif // CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_RENDERER_CONNECTION_H_ | 74 #endif // CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_RENDERER_CONNECTION_H_ |
| OLD | NEW |