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

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
10 namespace content {
11 class BrowserPpapiHost;
12 }
13
14 namespace chrome {
15
16 class PepperBrokerHost : public ppapi::host::ResourceHost {
17 public:
18 PepperBrokerHost(content::BrowserPpapiHost* host,
19 PP_Instance instance,
20 PP_Resource resource);
21 virtual ~PepperBrokerHost();
22
23 private:
24 DISALLOW_COPY_AND_ASSIGN(PepperBrokerHost);
25 };
26
27 } // namespace chrome
28
29 #endif // CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROKER_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698