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

Side by Side Diff: chrome/browser/renderer_host/pepper/pepper_broker_host.h

Issue 11316316: Implement an IsAllowed function in the pepper PPB_Broker_Trusted API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years 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
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 CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROKER_HOST_H_
6 #define CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROKER_HOST_H_
7
8 #include "ppapi/host/resource_host.h"
9 #include "ppapi/proxy/resource_message_params.h"
yzshen1 2012/12/06 19:59:46 nit: you don't need it.
raymes 2012/12/07 21:32:19 Done.
10
11 namespace content {
12 class BrowserPpapiHost;
13 }
14
15 namespace chrome {
16
17 class PepperBrokerHost : public ppapi::host::ResourceHost {
18 public:
19 PepperBrokerHost(content::BrowserPpapiHost* host,
20 PP_Instance instance,
21 PP_Resource resource);
22 virtual ~PepperBrokerHost();
23
24 private:
25 DISALLOW_COPY_AND_ASSIGN(PepperBrokerHost);
26 };
27
28 } // namespace chrome
29
30 #endif // CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROKER_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698