OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 PPAPI_PROXY_PLUGIN_PROXY_DELEGATE_H_ | 5 #ifndef PPAPI_PROXY_PLUGIN_PROXY_DELEGATE_H_ |
6 #define PPAPI_PROXY_PLUGIN_PROXY_DELEGATE_H_ | 6 #define PPAPI_PROXY_PLUGIN_PROXY_DELEGATE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
| 10 namespace IPC { |
| 11 class Sender; |
| 12 } |
| 13 |
10 namespace ppapi { | 14 namespace ppapi { |
11 namespace proxy { | 15 namespace proxy { |
12 | 16 |
13 class PPAPI_PROXY_EXPORT PluginProxyDelegate { | 17 class PPAPI_PROXY_EXPORT PluginProxyDelegate { |
14 public: | 18 public: |
15 virtual ~PluginProxyDelegate() {} | 19 virtual ~PluginProxyDelegate() {} |
16 | 20 |
17 // Sends the given message to the browser. Identical semantics to IPC::Sender | 21 // Sends the given message to the browser. Identical semantics to IPC::Sender |
18 // interface. | 22 // interface. New code should use GetBrowserSender instead. |
| 23 // TODO(brettw) remove this. |
19 virtual bool SendToBrowser(IPC::Message* msg) = 0; | 24 virtual bool SendToBrowser(IPC::Message* msg) = 0; |
20 | 25 |
| 26 // Returns the channel for sending to the browser. |
| 27 virtual IPC::Sender* GetBrowserSender() = 0; |
| 28 |
21 // Returns the language code of the current UI language. | 29 // Returns the language code of the current UI language. |
22 virtual std::string GetUILanguage() = 0; | 30 virtual std::string GetUILanguage() = 0; |
23 | 31 |
24 // Performs Windows-specific font caching in the browser for the given | 32 // Performs Windows-specific font caching in the browser for the given |
25 // LOGFONTW. Does nothing on non-Windows platforms. | 33 // LOGFONTW. Does nothing on non-Windows platforms. |
26 virtual void PreCacheFont(const void* logfontw) = 0; | 34 virtual void PreCacheFont(const void* logfontw) = 0; |
27 | 35 |
28 // Sets the active url which is reported by breakpad. | 36 // Sets the active url which is reported by breakpad. |
29 virtual void SetActiveURL(const std::string& url) = 0; | 37 virtual void SetActiveURL(const std::string& url) = 0; |
30 }; | 38 }; |
31 | 39 |
32 } // namespace proxy | 40 } // namespace proxy |
33 } // namespace ppapi | 41 } // namespace ppapi |
34 | 42 |
35 #endif // PPAPI_PROXY_PLUGIN_PROXY_DELEGATE_H_ | 43 #endif // PPAPI_PROXY_PLUGIN_PROXY_DELEGATE_H_ |
OLD | NEW |