Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(587)

Side by Side Diff: content/public/browser/pepper_helper.h

Issue 10907102: Add a PepperHelper::EnablePepperSupportForChannel function to content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« content/content_browser.gypi ('K') | « content/content_browser.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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
OLDNEW
« content/content_browser.gypi ('K') | « content/content_browser.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698