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

Side by Side Diff: content/renderer/pepper/host_array_buffer_var.cc

Issue 20165002: Move webkit/plugins/ppapi to content/renderer/pepper. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: more more clang fun 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/renderer/pepper/host_array_buffer_var.h ('k') | content/renderer/pepper/host_globals.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 (c) 2012 The Chromium Authors. All rights reserved. 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 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 "webkit/plugins/ppapi/host_array_buffer_var.h" 5 #include "content/renderer/pepper/host_array_buffer_var.h"
6 6
7 #include <stdio.h> 7 #include <stdio.h>
8 #include <string.h> 8 #include <string.h>
9 9
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "base/process_util.h" 12 #include "base/process_util.h"
13 #include "content/renderer/pepper/host_globals.h"
14 #include "content/renderer/pepper/plugin_module.h"
15 #include "content/renderer/pepper/ppapi_plugin_instance_impl.h"
13 #include "ppapi/c/pp_instance.h" 16 #include "ppapi/c/pp_instance.h"
14 #include "webkit/plugins/ppapi/host_globals.h"
15 #include "webkit/plugins/ppapi/plugin_module.h"
16 #include "webkit/plugins/ppapi/ppapi_plugin_instance_impl.h"
17 17
18 using ppapi::ArrayBufferVar; 18 using ppapi::ArrayBufferVar;
19 using WebKit::WebArrayBuffer; 19 using WebKit::WebArrayBuffer;
20 20
21 namespace webkit { 21 namespace webkit {
22 namespace ppapi { 22 namespace ppapi {
23 23
24 HostArrayBufferVar::HostArrayBufferVar(uint32 size_in_bytes) 24 HostArrayBufferVar::HostArrayBufferVar(uint32 size_in_bytes)
25 : buffer_(WebArrayBuffer::create(size_in_bytes, 1 /* element_size */)), 25 : buffer_(WebArrayBuffer::create(size_in_bytes, 1 /* element_size */)),
26 valid_(true) { 26 valid_(true) {
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 #endif 94 #endif
95 95
96 *plugin_shm_handle = 96 *plugin_shm_handle =
97 i->delegate()->ShareHandleWithRemote(platform_file, p, false); 97 i->delegate()->ShareHandleWithRemote(platform_file, p, false);
98 *host_shm_handle_id = -1; 98 *host_shm_handle_id = -1;
99 return true; 99 return true;
100 } 100 }
101 101
102 } // namespace ppapi 102 } // namespace ppapi
103 } // namespace webkit 103 } // namespace webkit
OLDNEW
« no previous file with comments | « content/renderer/pepper/host_array_buffer_var.h ('k') | content/renderer/pepper/host_globals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698