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

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
« no previous file with comments | « 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;
jam 2012/09/10 05:39:11 nit: not needed anymore
bbudge 2012/09/10 17:05:08 Done.
12 }
13 namespace IPC {
14 class ChannelProxy;
15 }
16
17 namespace content {
18
19 // Enables dispatching PPAPI messages from the plugin to the browser.
20 CONTENT_EXPORT void EnablePepperSupportForChannel(
21 IPC::ChannelProxy* channel,
22 int renderer_process_id);
jam 2012/09/10 05:39:11 nit: render_process_id by convention
bbudge 2012/09/10 17:05:08 Done.
23
24 } // namespace content
25
26 #endif // CONTENT_PUBLIC_BROWSER_PEPPER_HELPER_H_
27
OLDNEW
« no previous file with comments | « content/content_browser.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698