Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / content / renderer / web_ui_extension_data.h
index 23564c2..f45bc46 100644 (file)
@@ -2,8 +2,8 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-#ifndef CONTENT_RENDERER_WEBUI_EXTENSION_DATA_H_
-#define CONTENT_RENDERER_WEBUI_EXTENSION_DATA_H_
+#ifndef CONTENT_RENDERER_WEB_UI_EXTENSION_DATA_H_
+#define CONTENT_RENDERER_WEB_UI_EXTENSION_DATA_H_
 
 #include <map>
 #include <string>
@@ -19,7 +19,7 @@ class WebUIExtensionData
       public RenderViewObserverTracker<WebUIExtensionData> {
  public:
   explicit WebUIExtensionData(RenderView* render_view);
-  virtual ~WebUIExtensionData();
+  ~WebUIExtensionData() override;
 
   // Returns value for a given |key|. Will return an empty string if no such key
   // exists in the |variable_map_|.
@@ -27,7 +27,7 @@ class WebUIExtensionData
 
  private:
   // RenderViewObserver implementation.
-  virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
+  bool OnMessageReceived(const IPC::Message& message) override;
 
   void OnSetWebUIProperty(const std::string& name, const std::string& value);
 
@@ -38,4 +38,4 @@ class WebUIExtensionData
 
 }  // namespace content
 
-#endif  // CONTENT_RENDERER_WEBUI_EXTENSION_DATA_H_
+#endif  // CONTENT_RENDERER_WEB_UI_EXTENSION_DATA_H_