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

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

Issue 3859003: FBTF: Even more ctor/virtual deinlining. (Closed) Base URL: http://git.chromium.org/git/chromium.git
Patch Set: Created 10 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 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 ad8d2434284c6185b3ca109bbbb08f664446fba5..6f646e184c0534dcaec161e9e5c2ab6fb6ebc3f1 100644
--- a/chrome/browser/extensions/extension_updater.h
+++ b/chrome/browser/extensions/extension_updater.h
@@ -36,8 +36,8 @@ class ManifestFetchData {
public:
static const int kNeverPinged = -1;
- explicit ManifestFetchData(GURL update_url) : base_url_(update_url),
- full_url_(update_url) {}
+ explicit ManifestFetchData(GURL update_url);
+ ~ManifestFetchData();
// Returns true if this extension information was successfully added. If the
// return value is false it means the full_url would have become too long, and
@@ -50,9 +50,7 @@ class ManifestFetchData {
const std::set<std::string>& extension_ids() const { return extension_ids_; }
// Returns true if the given id is included in this manifest fetch.
- bool Includes(std::string extension_id) const {
- return extension_ids_.find(extension_id) != extension_ids_.end();
- }
+ bool Includes(std::string extension_id) const;
// Returns true if a ping parameter was added to full_url for this extension
// id.

Powered by Google App Engine
This is Rietveld 408576698