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

Unified Diff: chrome/browser/extensions/extension_updater.h

Issue 6272025: Part 2 of repairing regressions to my old clang check plugins so Nico can (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Copyright 2011 Created 9 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
Index: chrome/browser/extensions/extension_updater.h
diff --git a/chrome/browser/extensions/extension_updater.h b/chrome/browser/extensions/extension_updater.h
index 3d7986c0c196dcd1e7633117a004639778b646be..d5ed01ff70c0dfc1be43b7e506f63aab9c483703 100644
--- a/chrome/browser/extensions/extension_updater.h
+++ b/chrome/browser/extensions/extension_updater.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -178,14 +178,15 @@ class ExtensionUpdater
// We need to keep track of some information associated with a url
// when doing a fetch.
struct ExtensionFetch {
+ ExtensionFetch();
+ ExtensionFetch(const std::string& i, const GURL& u,
+ const std::string& h, const std::string& v);
+ ~ExtensionFetch();
+
std::string id;
GURL url;
std::string package_hash;
std::string version;
- ExtensionFetch() : id(""), url(), package_hash(""), version("") {}
- ExtensionFetch(const std::string& i, const GURL& u,
- const std::string& h, const std::string& v)
- : id(i), url(u), package_hash(h), version(v) {}
};
// These are needed for unit testing, to help identify the correct mock
« no previous file with comments | « chrome/browser/extensions/extension_pref_value_map.cc ('k') | chrome/browser/extensions/extension_updater.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698