Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / content / renderer / pepper / ppb_broker_impl.h
index 0e77218..0f74855 100644 (file)
@@ -33,12 +33,12 @@ class PPB_Broker_Impl : public ppapi::Resource,
   explicit PPB_Broker_Impl(PP_Instance instance);
 
   // Resource override.
-  virtual ppapi::thunk::PPB_Broker_API* AsPPB_Broker_API() OVERRIDE;
+  ppapi::thunk::PPB_Broker_API* AsPPB_Broker_API() override;
 
   // PPB_BrokerTrusted implementation.
-  virtual int32_t Connect(
-      scoped_refptr<ppapi::TrackedCallback> connect_callback) OVERRIDE;
-  virtual int32_t GetHandle(int32_t* handle) OVERRIDE;
+  int32_t Connect(
+      scoped_refptr<ppapi::TrackedCallback> connect_callback) override;
+  int32_t GetHandle(int32_t* handle) override;
 
   // Returns the URL of the document this plug-in runs in. This is necessary to
   // decide whether to grant access to the PPAPI broker.
@@ -47,10 +47,10 @@ class PPB_Broker_Impl : public ppapi::Resource,
   void BrokerConnected(int32_t handle, int32_t result);
 
  private:
-  virtual ~PPB_Broker_Impl();
+  ~PPB_Broker_Impl() override;
 
   // IPC::Listener implementation.
-  virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
+  bool OnMessageReceived(const IPC::Message& message) override;
 
   void OnPpapiBrokerChannelCreated(base::ProcessId broker_pid,
                                    const IPC::ChannelHandle& handle);