diff options
author | erg@chromium.org <erg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-16 17:22:49 +0000 |
---|---|---|
committer | erg@chromium.org <erg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-16 17:22:49 +0000 |
commit | 201366472a1a679a3894d152322416ea90a81c58 (patch) | |
tree | 092a3f6668c417a2b4b68b1fd29d2fd41dbc7fad /chrome/common/notification_source.h | |
parent | 8b4986943d904a9a23cfd612dcacf6e1cc3266a1 (diff) | |
download | chromium_src-201366472a1a679a3894d152322416ea90a81c58.zip chromium_src-201366472a1a679a3894d152322416ea90a81c58.tar.gz chromium_src-201366472a1a679a3894d152322416ea90a81c58.tar.bz2 |
Remove more definitions from header files.
This patch only concerns itself with places where we have more than 100 copies of methods being generated. (For example, the destructor and other random methods in FilePath weren't being inlined, leading to several hundred copies being generated.)
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3039001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52694 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/notification_source.h')
-rw-r--r-- | chrome/common/notification_source.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/common/notification_source.h b/chrome/common/notification_source.h index 98b9f66..1813c2e 100644 --- a/chrome/common/notification_source.h +++ b/chrome/common/notification_source.h @@ -15,8 +15,8 @@ // NotificationService::AllSources(). class NotificationSource { public: - NotificationSource(const NotificationSource& other) : ptr_(other.ptr_) { } - ~NotificationSource() {} + NotificationSource(const NotificationSource& other); + ~NotificationSource(); // NotificationSource can be used as the index for a map; this method // returns the pointer to the current source as an identifier, for use as a @@ -31,7 +31,7 @@ class NotificationSource { } protected: - explicit NotificationSource(const void* ptr) : ptr_(ptr) {} + explicit NotificationSource(const void* ptr); // Declaring this const allows Source<T> to be used with both T = Foo and // T = const Foo. |