OVERRIDE => override
This commit is contained in:
parent
e94795a600
commit
f809fef22d
20 changed files with 153 additions and 153 deletions
|
@ -41,12 +41,12 @@ class InspectableWebContentsImpl :
|
|||
explicit InspectableWebContentsImpl(content::WebContents*);
|
||||
virtual ~InspectableWebContentsImpl();
|
||||
|
||||
virtual InspectableWebContentsView* GetView() const OVERRIDE;
|
||||
virtual content::WebContents* GetWebContents() const OVERRIDE;
|
||||
virtual InspectableWebContentsView* GetView() const override;
|
||||
virtual content::WebContents* GetWebContents() const override;
|
||||
|
||||
virtual void ShowDevTools() OVERRIDE;
|
||||
virtual void CloseDevTools() OVERRIDE;
|
||||
virtual bool IsDevToolsViewShowing() OVERRIDE;
|
||||
virtual void ShowDevTools() override;
|
||||
virtual void CloseDevTools() override;
|
||||
virtual bool IsDevToolsViewShowing() override;
|
||||
|
||||
// Return the last position and size of devtools window.
|
||||
gfx::Rect GetDevToolsBounds() const;
|
||||
|
@ -66,32 +66,32 @@ class InspectableWebContentsImpl :
|
|||
private:
|
||||
// DevToolsEmbedderMessageDispacher::Delegate
|
||||
|
||||
virtual void ActivateWindow() OVERRIDE;
|
||||
virtual void CloseWindow() OVERRIDE;
|
||||
virtual void SetInspectedPageBounds(const gfx::Rect& rect) OVERRIDE;
|
||||
virtual void InspectElementCompleted() OVERRIDE;
|
||||
virtual void MoveWindow(int x, int y) OVERRIDE;
|
||||
virtual void SetIsDocked(bool docked) OVERRIDE;
|
||||
virtual void OpenInNewTab(const std::string& url) OVERRIDE;
|
||||
virtual void ActivateWindow() override;
|
||||
virtual void CloseWindow() override;
|
||||
virtual void SetInspectedPageBounds(const gfx::Rect& rect) override;
|
||||
virtual void InspectElementCompleted() override;
|
||||
virtual void MoveWindow(int x, int y) override;
|
||||
virtual void SetIsDocked(bool docked) override;
|
||||
virtual void OpenInNewTab(const std::string& url) override;
|
||||
virtual void SaveToFile(const std::string& url,
|
||||
const std::string& content,
|
||||
bool save_as) OVERRIDE;
|
||||
bool save_as) override;
|
||||
virtual void AppendToFile(const std::string& url,
|
||||
const std::string& content) OVERRIDE;
|
||||
virtual void RequestFileSystems() OVERRIDE;
|
||||
virtual void AddFileSystem() OVERRIDE;
|
||||
virtual void RemoveFileSystem(const std::string& file_system_path) OVERRIDE;
|
||||
const std::string& content) override;
|
||||
virtual void RequestFileSystems() override;
|
||||
virtual void AddFileSystem() override;
|
||||
virtual void RemoveFileSystem(const std::string& file_system_path) override;
|
||||
virtual void UpgradeDraggedFileSystemPermissions(
|
||||
const std::string& file_system_url) OVERRIDE;
|
||||
const std::string& file_system_url) override;
|
||||
virtual void IndexPath(int request_id,
|
||||
const std::string& file_system_path) OVERRIDE;
|
||||
virtual void StopIndexing(int request_id) OVERRIDE;
|
||||
const std::string& file_system_path) override;
|
||||
virtual void StopIndexing(int request_id) override;
|
||||
virtual void SearchInPath(int request_id,
|
||||
const std::string& file_system_path,
|
||||
const std::string& query) OVERRIDE;
|
||||
virtual void ZoomIn() OVERRIDE;
|
||||
virtual void ZoomOut() OVERRIDE;
|
||||
virtual void ResetZoom() OVERRIDE;
|
||||
const std::string& query) override;
|
||||
virtual void ZoomIn() override;
|
||||
virtual void ZoomOut() override;
|
||||
virtual void ResetZoom() override;
|
||||
|
||||
// content::DevToolsClientHost:
|
||||
virtual void DispatchOnInspectorFrontend(const std::string& message) override;
|
||||
|
@ -105,8 +105,8 @@ class InspectableWebContentsImpl :
|
|||
// content::WebContentsObserver:
|
||||
virtual void AboutToNavigateRenderView(content::RenderViewHost* render_view_host) override;
|
||||
virtual void DidFinishLoad(content::RenderFrameHost* render_frame_host,
|
||||
const GURL& validated_url) OVERRIDE;
|
||||
virtual void WebContentsDestroyed() OVERRIDE;
|
||||
const GURL& validated_url) override;
|
||||
virtual void WebContentsDestroyed() override;
|
||||
|
||||
// content::WebContentsDelegate
|
||||
|
||||
|
@ -114,10 +114,10 @@ class InspectableWebContentsImpl :
|
|||
int32 level,
|
||||
const base::string16& message,
|
||||
int32 line_no,
|
||||
const base::string16& source_id) OVERRIDE;
|
||||
const base::string16& source_id) override;
|
||||
virtual void HandleKeyboardEvent(
|
||||
content::WebContents*, const content::NativeWebKeyboardEvent&) OVERRIDE;
|
||||
virtual void CloseContents(content::WebContents* source) OVERRIDE;
|
||||
content::WebContents*, const content::NativeWebKeyboardEvent&) override;
|
||||
virtual void CloseContents(content::WebContents* source) override;
|
||||
|
||||
scoped_ptr<content::WebContents> web_contents_;
|
||||
scoped_ptr<content::WebContents> devtools_web_contents_;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue