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

Unified Diff: content/public/test/nested_message_pump_android.h

Issue 893333004: Update {virtual,override,final} to follow C++11 style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix formatting Created 5 years, 10 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: content/public/test/nested_message_pump_android.h
diff --git a/content/public/test/nested_message_pump_android.h b/content/public/test/nested_message_pump_android.h
index 4b7aebacb6832aeef58d6df2935f74920d8d58cd..1f6eb0f2449e9022b3a40944ad976c423b377e72 100644
--- a/content/public/test/nested_message_pump_android.h
+++ b/content/public/test/nested_message_pump_android.h
@@ -17,17 +17,16 @@ class NestedMessagePumpAndroid : public base::MessagePumpForUI {
public:
NestedMessagePumpAndroid();
- virtual void Run(Delegate* delegate) override;
- virtual void Quit() override;
- virtual void ScheduleWork() override;
- virtual void ScheduleDelayedWork(
- const base::TimeTicks& delayed_work_time) override;
- virtual void Start(Delegate* delegate) override;
+ void Run(Delegate* delegate) override;
+ void Quit() override;
+ void ScheduleWork() override;
+ void ScheduleDelayedWork(const base::TimeTicks& delayed_work_time) override;
+ void Start(Delegate* delegate) override;
static bool RegisterJni(JNIEnv* env);
protected:
- virtual ~NestedMessagePumpAndroid();
+ ~NestedMessagePumpAndroid() override;
private:
// We may make recursive calls to Run, so we save state that needs to be
« no previous file with comments | « content/public/browser/android/content_protocol_handler.h ('k') | content/renderer/android/address_detector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698