summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_updater.h
diff options
context:
space:
mode:
authorerg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-28 20:29:37 +0000
committererg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-28 20:29:37 +0000
commit0865c1342c3413c3b6f8d698105a9d7340d92cf2 (patch)
treef89ef79c9b6d86290fea29f9db4d88f421a00da9 /chrome/browser/extensions/extension_updater.h
parent68f3099b071756a717e850f4d3c1cb8a0ef00c6e (diff)
downloadchromium_src-0865c1342c3413c3b6f8d698105a9d7340d92cf2.zip
chromium_src-0865c1342c3413c3b6f8d698105a9d7340d92cf2.tar.gz
chromium_src-0865c1342c3413c3b6f8d698105a9d7340d92cf2.tar.bz2
Part 2 of repairing regressions to my old clang check plugins so Nico can
deploy the clang plugins to the waterfall/trybots. BUG=none TEST=compiles Review URL: http://codereview.chromium.org/6272025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73014 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/extension_updater.h')
-rw-r--r--chrome/browser/extensions/extension_updater.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/chrome/browser/extensions/extension_updater.h b/chrome/browser/extensions/extension_updater.h
index 3d7986c..d5ed01f 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