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

Side by Side Diff: content/common/pepper_renderer_instance_data.cc

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
« no previous file with comments | « content/common/pepper_renderer_instance_data.h ('k') | content/common/view_messages.h » ('j') | 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 #include "content/common/pepper_renderer_instance_data.h"
6
7 namespace content {
8
9 PepperRendererInstanceData::PepperRendererInstanceData()
10 : render_process_id(0),
11 render_view_id(0) {
12 }
13
14 PepperRendererInstanceData::PepperRendererInstanceData(
15 int render_process,
16 int render_view,
17 const GURL& document,
18 const GURL& plugin)
19 : render_process_id(render_process),
20 render_view_id(render_view),
21 document_url(document),
22 plugin_url(plugin) {
23 }
24
25 PepperRendererInstanceData::~PepperRendererInstanceData() {
26 }
27
28 } // namespace content
OLDNEW
« no previous file with comments | « content/common/pepper_renderer_instance_data.h ('k') | content/common/view_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698