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

Side by Side Diff: chrome/browser/crash_upload_list_win.h

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs 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 (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_CRASH_UPLOAD_LIST_WIN_H_ 5 #ifndef CHROME_BROWSER_CRASH_UPLOAD_LIST_WIN_H_
6 #define CHROME_BROWSER_CRASH_UPLOAD_LIST_WIN_H_ 6 #define CHROME_BROWSER_CRASH_UPLOAD_LIST_WIN_H_
7 7
8 #include "chrome/browser/crash_upload_list.h" 8 #include "chrome/browser/crash_upload_list.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 10
11 // A CrashUploadList that retrieves the list of reported crashes 11 // A CrashUploadList that retrieves the list of reported crashes
12 // from the Windows Event Log. 12 // from the Windows Event Log.
13 class CrashUploadListWin : public CrashUploadList { 13 class CrashUploadListWin : public CrashUploadList {
14 public: 14 public:
15 CrashUploadListWin(Delegate* delegate, const base::FilePath& upload_log_path); 15 CrashUploadListWin(Delegate* delegate, const base::FilePath& upload_log_path);
16 16
17 protected: 17 protected:
18 // Loads the list of crashes from the Windows Event Log. 18 // Loads the list of crashes from the Windows Event Log.
19 virtual void LoadUploadList() OVERRIDE; 19 virtual void LoadUploadList() override;
20 20
21 private: 21 private:
22 // Returns whether the event record is likely a Chrome crash log. 22 // Returns whether the event record is likely a Chrome crash log.
23 bool IsPossibleCrashLogRecord(EVENTLOGRECORD* record) const; 23 bool IsPossibleCrashLogRecord(EVENTLOGRECORD* record) const;
24 24
25 // Parses the event record and adds it to the crash list. 25 // Parses the event record and adds it to the crash list.
26 void ProcessPossibleCrashLogRecord(EVENTLOGRECORD* record); 26 void ProcessPossibleCrashLogRecord(EVENTLOGRECORD* record);
27 27
28 DISALLOW_COPY_AND_ASSIGN(CrashUploadListWin); 28 DISALLOW_COPY_AND_ASSIGN(CrashUploadListWin);
29 }; 29 };
30 30
31 #endif // CHROME_BROWSER_CRASH_UPLOAD_LIST_WIN_H_ 31 #endif // CHROME_BROWSER_CRASH_UPLOAD_LIST_WIN_H_
OLDNEW
« no previous file with comments | « chrome/browser/crash_recovery_browsertest.cc ('k') | chrome/browser/custom_handlers/protocol_handler_registry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698