Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / content / renderer / pepper / host_array_buffer_var.h
index 12ae729..9722f5f 100644 (file)
@@ -22,18 +22,17 @@ class HostArrayBufferVar : public ppapi::ArrayBufferVar {
                               base::SharedMemoryHandle handle);
 
   // ArrayBufferVar implementation.
-  virtual void* Map() OVERRIDE;
-  virtual void Unmap() OVERRIDE;
-  virtual uint32 ByteLength() OVERRIDE;
-  virtual bool CopyToNewShmem(PP_Instance instance,
-                              int* host_shm_handle_id,
-                              base::SharedMemoryHandle* plugin_shm_handle)
-      OVERRIDE;
+  void* Map() override;
+  void Unmap() override;
+  uint32 ByteLength() override;
+  bool CopyToNewShmem(PP_Instance instance,
+                      int* host_shm_handle_id,
+                      base::SharedMemoryHandle* plugin_shm_handle) override;
 
   blink::WebArrayBuffer& webkit_buffer() { return buffer_; }
 
  private:
-  virtual ~HostArrayBufferVar();
+  ~HostArrayBufferVar() override;
 
   blink::WebArrayBuffer buffer_;
   // Tracks whether the data in the buffer is valid.