Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / ui / ozone / platform / caca / caca_window_manager.h
index e01cf55..4f51a7f 100644 (file)
@@ -20,7 +20,7 @@ class CacaWindow;
 class CacaWindowManager : public SurfaceFactoryOzone {
  public:
   CacaWindowManager();
-  virtual ~CacaWindowManager();
+  ~CacaWindowManager() override;
 
   // Register a new libcaca window/instance. Returns the window id.
   int32_t AddWindow(CacaWindow* window);
@@ -29,11 +29,11 @@ class CacaWindowManager : public SurfaceFactoryOzone {
   void RemoveWindow(int32_t window_id, CacaWindow* window);
 
   // ui::SurfaceFactoryOzone overrides:
-  virtual bool LoadEGLGLES2Bindings(
+  bool LoadEGLGLES2Bindings(
       AddGLLibraryCallback add_gl_library,
-      SetGLGetProcAddressProcCallback set_gl_get_proc_address) OVERRIDE;
-  virtual scoped_ptr<SurfaceOzoneCanvas> CreateCanvasForWidget(
-      gfx::AcceleratedWidget widget) OVERRIDE;
+      SetGLGetProcAddressProcCallback set_gl_get_proc_address) override;
+  scoped_ptr<SurfaceOzoneCanvas> CreateCanvasForWidget(
+      gfx::AcceleratedWidget widget) override;
 
  private:
   IDMap<CacaWindow> windows_;