| Index: chrome/browser/ui/webui/sync_file_system_internals/sync_file_system_internals_handler.h
|
| diff --git a/chrome/browser/ui/webui/sync_file_system_internals/sync_file_system_internals_handler.h b/chrome/browser/ui/webui/sync_file_system_internals/sync_file_system_internals_handler.h
|
| index 33f8fc41d83254b2ca9416fb162fc9992ac30f79..22b0cdbe59bcb70b5fa62ccc230d5251ccab6c16 100644
|
| --- a/chrome/browser/ui/webui/sync_file_system_internals/sync_file_system_internals_handler.h
|
| +++ b/chrome/browser/ui/webui/sync_file_system_internals/sync_file_system_internals_handler.h
|
| @@ -26,24 +26,23 @@ class SyncFileSystemInternalsHandler
|
| public sync_file_system::TaskLogger::Observer {
|
| public:
|
| explicit SyncFileSystemInternalsHandler(Profile* profile);
|
| - virtual ~SyncFileSystemInternalsHandler();
|
| + ~SyncFileSystemInternalsHandler() override;
|
|
|
| // content::WebUIMessageHandler implementation.
|
| - virtual void RegisterMessages() override;
|
| + void RegisterMessages() override;
|
|
|
| // sync_file_system::SyncEventObserver interface implementation.
|
| - virtual void OnSyncStateUpdated(
|
| - const GURL& app_origin,
|
| - sync_file_system::SyncServiceState state,
|
| - const std::string& description) override;
|
| - virtual void OnFileSynced(const storage::FileSystemURL& url,
|
| - sync_file_system::SyncFileType file_type,
|
| - sync_file_system::SyncFileStatus status,
|
| - sync_file_system::SyncAction action,
|
| - sync_file_system::SyncDirection direction) override;
|
| + void OnSyncStateUpdated(const GURL& app_origin,
|
| + sync_file_system::SyncServiceState state,
|
| + const std::string& description) override;
|
| + void OnFileSynced(const storage::FileSystemURL& url,
|
| + sync_file_system::SyncFileType file_type,
|
| + sync_file_system::SyncFileStatus status,
|
| + sync_file_system::SyncAction action,
|
| + sync_file_system::SyncDirection direction) override;
|
|
|
| // sync_file_system::TaskLogger::Observer implementation.
|
| - virtual void OnLogRecorded(
|
| + void OnLogRecorded(
|
| const sync_file_system::TaskLogger::TaskLog& task_log) override;
|
|
|
| private:
|
|
|