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

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

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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/fullscreen_container.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
diff --git a/content/renderer/pepper/host_array_buffer_var.h b/content/renderer/pepper/host_array_buffer_var.h
index 9ba1d7c6c5618b1da2f97057fdf08262c34649b2..13bd80630deb8a7fef1c5576c0dc2b10e99227e2 100644
--- a/content/renderer/pepper/host_array_buffer_var.h
+++ b/content/renderer/pepper/host_array_buffer_var.h
@@ -17,7 +17,7 @@ namespace content {
class HostArrayBufferVar : public ppapi::ArrayBufferVar {
public:
explicit HostArrayBufferVar(uint32 size_in_bytes);
- explicit HostArrayBufferVar(const WebKit::WebArrayBuffer& buffer);
+ explicit HostArrayBufferVar(const blink::WebArrayBuffer& buffer);
explicit HostArrayBufferVar(uint32 size_in_bytes,
base::SharedMemoryHandle handle);
@@ -30,12 +30,12 @@ class HostArrayBufferVar : public ppapi::ArrayBufferVar {
int* host_shm_handle_id,
base::SharedMemoryHandle* plugin_shm_handle) OVERRIDE;
- WebKit::WebArrayBuffer& webkit_buffer() { return buffer_; }
+ blink::WebArrayBuffer& webkit_buffer() { return buffer_; }
private:
virtual ~HostArrayBufferVar();
- WebKit::WebArrayBuffer buffer_;
+ blink::WebArrayBuffer buffer_;
// Tracks whether the data in the buffer is valid.
bool valid_;
« no previous file with comments | « content/renderer/pepper/fullscreen_container.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