Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1354)

Unified Diff: chrome/browser/ui/webui/chromeos/first_run/first_run_handler.h

Issue 854063002: Update {virtual,override,final} to follow C++11 style chrome/browser/ui/webui/chromeos. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/webui/chromeos/first_run/first_run_handler.h
diff --git a/chrome/browser/ui/webui/chromeos/first_run/first_run_handler.h b/chrome/browser/ui/webui/chromeos/first_run/first_run_handler.h
index 22694aad17fb915b469d3c657ac149c9deec1e8d..0c9174b075aa0e70b06b8c2b103b01c04607afbd 100644
--- a/chrome/browser/ui/webui/chromeos/first_run/first_run_handler.h
+++ b/chrome/browser/ui/webui/chromeos/first_run/first_run_handler.h
@@ -20,24 +20,24 @@ class FirstRunHandler : public FirstRunActor,
public:
FirstRunHandler();
// Overriden from FirstRunActor.
- virtual bool IsInitialized() override;
- virtual void SetBackgroundVisible(bool visible) override;
- virtual void AddRectangularHole(int x, int y, int width, int height) override;
- virtual void AddRoundHole(int x, int y, float radius) override;
- virtual void RemoveBackgroundHoles() override;
- virtual void ShowStepPositioned(const std::string& name,
- const StepPosition& position) override;
- virtual void ShowStepPointingTo(const std::string& name,
- int x,
- int y,
- int offset) override;
- virtual void HideCurrentStep() override;
- virtual void Finalize() override;
- virtual bool IsFinalizing() override;
+ bool IsInitialized() override;
+ void SetBackgroundVisible(bool visible) override;
+ void AddRectangularHole(int x, int y, int width, int height) override;
+ void AddRoundHole(int x, int y, float radius) override;
+ void RemoveBackgroundHoles() override;
+ void ShowStepPositioned(const std::string& name,
+ const StepPosition& position) override;
+ void ShowStepPointingTo(const std::string& name,
+ int x,
+ int y,
+ int offset) override;
+ void HideCurrentStep() override;
+ void Finalize() override;
+ bool IsFinalizing() override;
private:
// Overriden from content::WebUIMessageHandler.
- virtual void RegisterMessages() override;
+ void RegisterMessages() override;
// Handlers for calls from JS.
void HandleInitialized(const base::ListValue* args);
« no previous file with comments | « chrome/browser/ui/webui/chromeos/drive_internals_ui.cc ('k') | chrome/browser/ui/webui/chromeos/keyboard_overlay_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698