Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / athena / extensions / shell / athena_shell_app_delegate.h
index 7cfe919..cb22fde 100644 (file)
@@ -12,29 +12,27 @@ namespace athena {
 class AthenaShellAppDelegate : public AthenaAppDelegateBase {
  public:
   AthenaShellAppDelegate();
-  virtual ~AthenaShellAppDelegate();
+  ~AthenaShellAppDelegate() override;
 
  private:
   // extensions::AppDelegate:
-  virtual void InitWebContents(content::WebContents* web_contents) OVERRIDE;
-  virtual content::ColorChooser* ShowColorChooser(
-      content::WebContents* web_contents,
-      SkColor initial_color) OVERRIDE;
-  virtual void RunFileChooser(
-      content::WebContents* tab,
-      const content::FileChooserParams& params) OVERRIDE;
-  virtual void RequestMediaAccessPermission(
+  void InitWebContents(content::WebContents* web_contents) override;
+  content::ColorChooser* ShowColorChooser(content::WebContents* web_contents,
+                                          SkColor initial_color) override;
+  void RunFileChooser(content::WebContents* tab,
+                      const content::FileChooserParams& params) override;
+  void RequestMediaAccessPermission(
       content::WebContents* web_contents,
       const content::MediaStreamRequest& request,
       const content::MediaResponseCallback& callback,
-      const extensions::Extension* extension) OVERRIDE;
-  virtual bool CheckMediaAccessPermission(
+      const extensions::Extension* extension) override;
+  bool CheckMediaAccessPermission(
       content::WebContents* web_contents,
       const GURL& security_origin,
       content::MediaStreamType type,
-      const extensions::Extension* extension) OVERRIDE;
-  virtual void SetWebContentsBlocked(content::WebContents* web_contents,
-                                     bool blocked) OVERRIDE;
+      const extensions::Extension* extension) override;
+  void SetWebContentsBlocked(content::WebContents* web_contents,
+                             bool blocked) override;
 
   DISALLOW_COPY_AND_ASSIGN(AthenaShellAppDelegate);
 };