| Index: chrome/browser/ui/webui/sync_internals_message_handler.h
|
| diff --git a/chrome/browser/ui/webui/sync_internals_message_handler.h b/chrome/browser/ui/webui/sync_internals_message_handler.h
|
| index b87014f1b512bafeeebf87a9b430cb2999d3aa52..81e79231e0bf9e9cfdf7ae6827353c413bf498d2 100644
|
| --- a/chrome/browser/ui/webui/sync_internals_message_handler.h
|
| +++ b/chrome/browser/ui/webui/sync_internals_message_handler.h
|
| @@ -29,9 +29,9 @@ class SyncInternalsMessageHandler : public content::WebUIMessageHandler,
|
| public syncer::TypeDebugInfoObserver {
|
| public:
|
| SyncInternalsMessageHandler();
|
| - virtual ~SyncInternalsMessageHandler();
|
| + ~SyncInternalsMessageHandler() override;
|
|
|
| - virtual void RegisterMessages() override;
|
| + void RegisterMessages() override;
|
|
|
| // Sets up observers to receive events and forward them to the UI.
|
| void HandleRegisterForEvents(const base::ListValue* args);
|
| @@ -49,29 +49,25 @@ class SyncInternalsMessageHandler : public content::WebUIMessageHandler,
|
| void HandleGetAllNodes(const base::ListValue* args);
|
|
|
| // syncer::JsEventHandler implementation.
|
| - virtual void HandleJsEvent(
|
| - const std::string& name,
|
| - const syncer::JsEventDetails& details) override;
|
| + void HandleJsEvent(const std::string& name,
|
| + const syncer::JsEventDetails& details) override;
|
|
|
| // Callback used in GetAllNodes.
|
| void OnReceivedAllNodes(int request_id, scoped_ptr<base::ListValue> nodes);
|
|
|
| // ProfileSyncServiceObserver implementation.
|
| - virtual void OnStateChanged() override;
|
| + void OnStateChanged() override;
|
|
|
| // ProtocolEventObserver implementation.
|
| - virtual void OnProtocolEvent(const syncer::ProtocolEvent& e) override;
|
| + void OnProtocolEvent(const syncer::ProtocolEvent& e) override;
|
|
|
| // TypeDebugInfoObserver implementation.
|
| - virtual void OnCommitCountersUpdated(
|
| - syncer::ModelType type,
|
| - const syncer::CommitCounters& counters) override;
|
| - virtual void OnUpdateCountersUpdated(
|
| - syncer::ModelType type,
|
| - const syncer::UpdateCounters& counters) override;
|
| - virtual void OnStatusCountersUpdated(
|
| - syncer::ModelType type,
|
| - const syncer::StatusCounters& counters) override;
|
| + void OnCommitCountersUpdated(syncer::ModelType type,
|
| + const syncer::CommitCounters& counters) override;
|
| + void OnUpdateCountersUpdated(syncer::ModelType type,
|
| + const syncer::UpdateCounters& counters) override;
|
| + void OnStatusCountersUpdated(syncer::ModelType type,
|
| + const syncer::StatusCounters& counters) override;
|
|
|
| // Helper to emit counter updates.
|
| //
|
|
|