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

Unified Diff: chrome/common/extensions/extension_set.h

Issue 10855075: Clean-up inline members of nested classes (chrome/) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 | « chrome/browser/ui/webui/ntp/new_tab_ui.cc ('k') | chrome/common/extensions/extension_set.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/extension_set.h
diff --git a/chrome/common/extensions/extension_set.h b/chrome/common/extensions/extension_set.h
index 253b8ffd8c0658f9d3da9ea5a3785a332734fe13..43635ba1654b4fc992c047acec02be16ec462827 100644
--- a/chrome/common/extensions/extension_set.h
+++ b/chrome/common/extensions/extension_set.h
@@ -51,9 +51,9 @@ class ExtensionSet {
public std::iterator<std::input_iterator_tag,
scoped_refptr<const extensions::Extension> > {
public:
- const_iterator() {}
- explicit const_iterator(ExtensionMap::const_iterator it) :
- it_(it) {}
+ const_iterator();
+ const_iterator(const const_iterator& other);
+ explicit const_iterator(ExtensionMap::const_iterator it);
const_iterator& operator++() {
++it_;
return *this;
« no previous file with comments | « chrome/browser/ui/webui/ntp/new_tab_ui.cc ('k') | chrome/common/extensions/extension_set.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698