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

Side by Side Diff: content/child/npapi/npobject_proxy.cc

Issue 19462016: Move npapi related files from content\child to the new content\child\npapi directory. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 5 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/child/npapi/npobject_proxy.h ('k') | content/child/npapi/npobject_stub.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/child/npobject_proxy.h" 5 #include "content/child/npapi/npobject_proxy.h"
6 6
7 #include "content/child/np_channel_base.h" 7 #include "content/child/npapi/np_channel_base.h"
8 #include "content/child/npapi/npobject_util.h"
8 #include "content/child/npapi/plugin_host.h" 9 #include "content/child/npapi/plugin_host.h"
9 #include "content/child/npapi/plugin_instance.h" 10 #include "content/child/npapi/plugin_instance.h"
10 #include "content/child/npobject_util.h"
11 #include "content/child/plugin_messages.h" 11 #include "content/child/plugin_messages.h"
12 #include "third_party/WebKit/public/web/WebBindings.h" 12 #include "third_party/WebKit/public/web/WebBindings.h"
13 13
14 using WebKit::WebBindings; 14 using WebKit::WebBindings;
15 15
16 namespace content { 16 namespace content {
17 17
18 struct NPObjectWrapper { 18 struct NPObjectWrapper {
19 NPObject object; 19 NPObject object;
20 NPObjectProxy* proxy; 20 NPObjectProxy* proxy;
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 proxy = NULL; 498 proxy = NULL;
499 if (!result) 499 if (!result)
500 return false; 500 return false;
501 501
502 CreateNPVariant( 502 CreateNPVariant(
503 result_param, channel.get(), result_var, render_view_id, page_url); 503 result_param, channel.get(), result_var, render_view_id, page_url);
504 return true; 504 return true;
505 } 505 }
506 506
507 } // namespace content 507 } // namespace content
OLDNEW
« no previous file with comments | « content/child/npapi/npobject_proxy.h ('k') | content/child/npapi/npobject_stub.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698