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

Side by Side Diff: chrome/browser/media_galleries/fileapi/safe_audio_video_checker.h

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 6 years, 2 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_SAFE_AUDIO_VIDEO_CHECKER_H_ 5 #ifndef CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_SAFE_AUDIO_VIDEO_CHECKER_H_
6 #define CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_SAFE_AUDIO_VIDEO_CHECKER_H_ 6 #define CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_SAFE_AUDIO_VIDEO_CHECKER_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/callback_forward.h" 9 #include "base/callback_forward.h"
10 #include "base/files/file.h" 10 #include "base/files/file.h"
(...skipping 30 matching lines...) Expand all
41 41
42 virtual ~SafeAudioVideoChecker(); 42 virtual ~SafeAudioVideoChecker();
43 43
44 // Starts validation once the utility process has been started. 44 // Starts validation once the utility process has been started.
45 virtual void OnProcessStarted(); 45 virtual void OnProcessStarted();
46 46
47 // Notification of the result from the utility process. 47 // Notification of the result from the utility process.
48 void OnCheckingFinished(bool valid); 48 void OnCheckingFinished(bool valid);
49 49
50 // UtilityProcessHostClient implementation. 50 // UtilityProcessHostClient implementation.
51 virtual void OnProcessCrashed(int exit_code) OVERRIDE; 51 virtual void OnProcessCrashed(int exit_code) override;
52 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; 52 virtual bool OnMessageReceived(const IPC::Message& message) override;
53 53
54 State state_; 54 State state_;
55 55
56 base::File file_; 56 base::File file_;
57 57
58 const storage::CopyOrMoveFileValidator::ResultCallback callback_; 58 const storage::CopyOrMoveFileValidator::ResultCallback callback_;
59 59
60 base::WeakPtr<content::UtilityProcessHost> utility_process_host_; 60 base::WeakPtr<content::UtilityProcessHost> utility_process_host_;
61 61
62 DISALLOW_COPY_AND_ASSIGN(SafeAudioVideoChecker); 62 DISALLOW_COPY_AND_ASSIGN(SafeAudioVideoChecker);
63 }; 63 };
64 64
65 #endif // CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_SAFE_AUDIO_VIDEO_CHECKER_H_ 65 #endif // CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_SAFE_AUDIO_VIDEO_CHECKER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698