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

Side by Side Diff: content/common/pepper_renderer_instance_data.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 CONTENT_COMMON_PEPPER_RENDERER_INSTANCE_DATA_H_
6 #define CONTENT_COMMON_PEPPER_RENDERER_INSTANCE_DATA_H_
7
8 #include "googleurl/src/gurl.h"
9
10 namespace content {
11
12 // This struct contains data which is associated with a particular plugin
13 // instance and is related to the renderer in which the plugin instance lives.
14 // This data is transferred to the browser process from the renderer when the
15 // instance is created and is stored in the BrowserPpapiHost.
16 struct PepperRendererInstanceData {
17 PepperRendererInstanceData();
18 PepperRendererInstanceData(int render_process,
brettw 2012/12/05 23:00:26 Do we need a destructor here since there are non-t
raymes 2012/12/07 21:32:19 Done.
19 int render_view,
20 const GURL& document,
21 const GURL& plugin);
22 int render_process_id;
23 int render_view_id;
24 GURL document_url;
25 GURL plugin_url;
26 };
27
28 } // namespace content
29
30 #endif // CONTENT_COMMON_PEPPER_RENDERER_INSTANCE_DATA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698