Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / ui / webui / version_handler.h
index 2fc65d4..b7f272a 100644 (file)
 class VersionHandler : public content::WebUIMessageHandler {
  public:
   VersionHandler();
-  virtual ~VersionHandler();
+  ~VersionHandler() override;
 
   // content::WebUIMessageHandler implementation.
-  virtual void RegisterMessages() OVERRIDE;
+  void RegisterMessages() override;
 
   // Callback for the "requestVersionInfo" message. This asynchronously requests
   // the flash version and eventually returns it to the front end along with the
   // list of variations using OnGotPlugins.
-  virtual void HandleRequestVersionInfo(const ListValue* args);
+  virtual void HandleRequestVersionInfo(const base::ListValue* args);
 
  private:
   // Callback which handles returning the executable and profile paths to the
   // front end.
-  void OnGotFilePaths(string16* executable_path_data,
-                      string16* profile_path_data);
+  void OnGotFilePaths(base::string16* executable_path_data,
+                      base::string16* profile_path_data);
 
   // Callback for GetPlugins which responds to the page with the Flash version.
   // This also initiates the OS Version load on ChromeOS.