Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / extensions / api / copresence_private / copresence_private_api.h
index f6a7dbc..917b242 100644 (file)
@@ -16,7 +16,7 @@ namespace extensions {
 class CopresencePrivateFunction : public ChromeUIThreadExtensionFunction {
  protected:
   copresence::WhispernetClient* GetWhispernetClient();
-  virtual ~CopresencePrivateFunction() {}
+  ~CopresencePrivateFunction() override {}
 };
 
 class CopresencePrivateSendFoundFunction : public CopresencePrivateFunction {
@@ -25,8 +25,8 @@ class CopresencePrivateSendFoundFunction : public CopresencePrivateFunction {
                              COPRESENCEPRIVATE_SENDFOUND);
 
  protected:
-  virtual ~CopresencePrivateSendFoundFunction() {}
-  virtual ExtensionFunction::ResponseAction Run() OVERRIDE;
+  ~CopresencePrivateSendFoundFunction() override {}
+  ExtensionFunction::ResponseAction Run() override;
 };
 
 class CopresencePrivateSendSamplesFunction : public CopresencePrivateFunction {
@@ -35,8 +35,8 @@ class CopresencePrivateSendSamplesFunction : public CopresencePrivateFunction {
                              COPRESENCEPRIVATE_SENDSAMPLES);
 
  protected:
-  virtual ~CopresencePrivateSendSamplesFunction() {}
-  virtual ExtensionFunction::ResponseAction Run() OVERRIDE;
+  ~CopresencePrivateSendSamplesFunction() override {}
+  ExtensionFunction::ResponseAction Run() override;
 };
 
 class CopresencePrivateSendDetectFunction : public CopresencePrivateFunction {
@@ -45,8 +45,8 @@ class CopresencePrivateSendDetectFunction : public CopresencePrivateFunction {
                              COPRESENCEPRIVATE_SENDDETECT);
 
  protected:
-  virtual ~CopresencePrivateSendDetectFunction() {}
-  virtual ExtensionFunction::ResponseAction Run() OVERRIDE;
+  ~CopresencePrivateSendDetectFunction() override {}
+  ExtensionFunction::ResponseAction Run() override;
 };
 
 class CopresencePrivateSendInitializedFunction
@@ -56,8 +56,8 @@ class CopresencePrivateSendInitializedFunction
                              COPRESENCEPRIVATE_SENDINITIALIZED);
 
  protected:
-  virtual ~CopresencePrivateSendInitializedFunction() {}
-  virtual ExtensionFunction::ResponseAction Run() OVERRIDE;
+  ~CopresencePrivateSendInitializedFunction() override {}
+  ExtensionFunction::ResponseAction Run() override;
 };
 
 }  // namespace extensions