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

Unified Diff: content/renderer/pepper/host_array_buffer_var.h

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/pepper/gfx_conversion.h ('k') | content/renderer/pepper/host_array_buffer_var.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/pepper/host_array_buffer_var.h
===================================================================
--- content/renderer/pepper/host_array_buffer_var.h (revision 213482)
+++ content/renderer/pepper/host_array_buffer_var.h (working copy)
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef PPAPI_WEBKIT_PLUGINS_PPAPI_HOST_ARRAY_BUFFER_VAR_H_
-#define PPAPI_WEBKIT_PLUGINS_PPAPI_HOST_ARRAY_BUFFER_VAR_H_
+#ifndef PPAPI_CONTENT_RENDERER_PEPPER_HOST_ARRAY_BUFFER_VAR_H_
+#define PPAPI_CONTENT_RENDERER_PEPPER_HOST_ARRAY_BUFFER_VAR_H_
#include "base/memory/shared_memory.h"
#include "ppapi/c/pp_instance.h"
@@ -21,7 +21,6 @@
explicit HostArrayBufferVar(const WebKit::WebArrayBuffer& buffer);
explicit HostArrayBufferVar(uint32 size_in_bytes,
base::SharedMemoryHandle handle);
- virtual ~HostArrayBufferVar();
// ArrayBufferVar implementation.
virtual void* Map() OVERRIDE;
@@ -35,6 +34,8 @@
WebKit::WebArrayBuffer& webkit_buffer() { return buffer_; }
private:
+ virtual ~HostArrayBufferVar();
+
WebKit::WebArrayBuffer buffer_;
// Tracks whether the data in the buffer is valid.
bool valid_;
@@ -45,4 +46,4 @@
} // namespace ppapi
} // namespace webkit
-#endif // PPAPI_WEBKIT_PLUGINS_PPAPI_HOST_ARRAY_BUFFER_VAR_H_
+#endif // PPAPI_CONTENT_RENDERER_PEPPER_HOST_ARRAY_BUFFER_VAR_H_
« no previous file with comments | « content/renderer/pepper/gfx_conversion.h ('k') | content/renderer/pepper/host_array_buffer_var.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698