Chromium Code Reviews| 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_PUBLIC_BROWSER_PEPPER_HELPER_H_ | |
| 6 #define CONTENT_PUBLIC_BROWSER_PEPPER_HELPER_H_ | |
| 7 | |
| 8 #include "content/common/content_export.h" | |
| 9 | |
| 10 namespace net { | |
| 11 class HostResolver; | |
| 12 } | |
| 13 namespace IPC { | |
| 14 class ChannelProxy; | |
| 15 } | |
| 16 | |
| 17 namespace content { | |
| 18 | |
| 19 class CONTENT_EXPORT PepperHelper { | |
|
jam
2012/09/07 16:09:30
nit: no need for class, just the content namespace
bbudge
2012/09/08 01:17:27
Done.
| |
| 20 public: | |
| 21 // Enables dispatching PPAPI messages from the plugin to the browser. | |
| 22 static void EnablePepperSupportForChannel( | |
| 23 IPC::ChannelProxy* channel, | |
| 24 net::HostResolver* host_resolver); | |
| 25 }; | |
| 26 | |
| 27 } // namespace content | |
| 28 | |
| 29 #endif // CONTENT_PUBLIC_BROWSER_PEPPER_HELPER_H_ | |
| 30 | |
| OLD | NEW |