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

Unified Diff: extensions/common/update_manifest.cc

Issue 2699663003: Convert utility process extension ParseUpdate IPC to mojo (Closed)
Patch Set: Sync to ToT, see if git apply issue and try jobs are happy. Created 3 years, 10 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 | « extensions/common/update_manifest.h ('k') | extensions/shell/utility/shell_content_utility_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/common/update_manifest.cc
diff --git a/extensions/common/update_manifest.cc b/extensions/common/update_manifest.cc
index adb7c3174f6a14ab0118d880a9e309686f5d5763..a8348606ae1927477b5c7640c2868b28fb953f43 100644
--- a/extensions/common/update_manifest.cc
+++ b/extensions/common/update_manifest.cc
@@ -19,22 +19,21 @@ static const char* kExpectedGupdateProtocol = "2.0";
static const char* kExpectedGupdateXmlns =
"http://www.google.com/update2/response";
-UpdateManifest::Result::Result()
- : size(0),
- diff_size(0) {}
+UpdateManifest::Result::Result() : size(0), diff_size(0) {}
UpdateManifest::Result::Result(const Result& other) = default;
-UpdateManifest::Result::~Result() {}
+UpdateManifest::Result::~Result() = default;
UpdateManifest::Results::Results() : daystart_elapsed_seconds(kNoDaystart) {}
-UpdateManifest::Results::~Results() {}
+UpdateManifest::Results::Results(const Results& other) = default;
-UpdateManifest::UpdateManifest() {
-}
+UpdateManifest::Results::~Results() = default;
+
+UpdateManifest::UpdateManifest() = default;
-UpdateManifest::~UpdateManifest() {}
+UpdateManifest::~UpdateManifest() = default;
void UpdateManifest::ParseError(const char* details, ...) {
va_list args;
« no previous file with comments | « extensions/common/update_manifest.h ('k') | extensions/shell/utility/shell_content_utility_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698