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

Unified Diff: components/crash/app/breakpad_linux.cc

Issue 865973003: Update {virtual,override,final} to follow C++11 style in components, round 2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix format Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | components/metrics/net/wifi_access_point_info_provider_chromeos.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/crash/app/breakpad_linux.cc
diff --git a/components/crash/app/breakpad_linux.cc b/components/crash/app/breakpad_linux.cc
index 09a9251e2d80c080617b4ecf70fc7ddb21b887b0..a925e07143e680f4cdb48e626f99253a352cb9a5 100644
--- a/components/crash/app/breakpad_linux.cc
+++ b/components/crash/app/breakpad_linux.cc
@@ -401,25 +401,25 @@ class CrashReporterWriter : public MimeWriter {
public:
explicit CrashReporterWriter(int fd);
- virtual void AddBoundary() override;
+ void AddBoundary() override;
- virtual void AddEnd() override;
+ void AddEnd() override;
- virtual void AddPairData(const char* msg_type,
- size_t msg_type_size,
- const char* msg_data,
- size_t msg_data_size) override;
+ void AddPairData(const char* msg_type,
+ size_t msg_type_size,
+ const char* msg_data,
+ size_t msg_data_size) override;
- virtual void AddPairDataInChunks(const char* msg_type,
- size_t msg_type_size,
- const char* msg_data,
- size_t msg_data_size,
- size_t chunk_size,
- bool strip_trailing_spaces) override;
+ void AddPairDataInChunks(const char* msg_type,
+ size_t msg_type_size,
+ const char* msg_data,
+ size_t msg_data_size,
+ size_t chunk_size,
+ bool strip_trailing_spaces) override;
- virtual void AddFileContents(const char* filename_msg,
- uint8_t* file_data,
- size_t file_size) override;
+ void AddFileContents(const char* filename_msg,
+ uint8_t* file_data,
+ size_t file_size) override;
private:
DISALLOW_COPY_AND_ASSIGN(CrashReporterWriter);
« no previous file with comments | « no previous file | components/metrics/net/wifi_access_point_info_provider_chromeos.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698