Index: content/browser/profiler_controller_impl.h |
diff --git a/content/browser/profiler_controller_impl.h b/content/browser/profiler_controller_impl.h |
index b90e1f83f295d6ffcc7d395bf0951abbdf3c3382..44e160c9a5dc2839a6554b54a8fc837539f960ac 100644 |
--- a/content/browser/profiler_controller_impl.h |
+++ b/content/browser/profiler_controller_impl.h |
@@ -25,7 +25,7 @@ class ProfilerControllerImpl : public ProfilerController { |
// Normally instantiated when the child process is launched. Only one instance |
// should be created per process. |
ProfilerControllerImpl(); |
- virtual ~ProfilerControllerImpl(); |
+ ~ProfilerControllerImpl() override; |
// Notify the |subscriber_| that it should expect at least |pending_processes| |
// additional calls to OnProfilerDataCollected(). OnPendingProcess() may be |
@@ -42,9 +42,9 @@ class ProfilerControllerImpl : public ProfilerController { |
int process_type); |
// ProfilerController implementation: |
- virtual void Register(ProfilerSubscriber* subscriber) override; |
- virtual void Unregister(const ProfilerSubscriber* subscriber) override; |
- virtual void GetProfilerData(int sequence_number) override; |
+ void Register(ProfilerSubscriber* subscriber) override; |
+ void Unregister(const ProfilerSubscriber* subscriber) override; |
+ void GetProfilerData(int sequence_number) override; |
private: |
friend struct DefaultSingletonTraits<ProfilerControllerImpl>; |