diff options
author | joth@chromium.org <joth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-17 16:16:56 +0000 |
---|---|---|
committer | joth@chromium.org <joth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-17 16:16:56 +0000 |
commit | c01b9b5ba4bb2d97518399fa74c2c384384f052f (patch) | |
tree | 65a3e606e0804636fe5d169929a981ddb5c0ec06 /base/task.h | |
parent | a120891ec61a84cbcde5489ce26f92583689ff4e (diff) | |
download | chromium_src-c01b9b5ba4bb2d97518399fa74c2c384384f052f.zip chromium_src-c01b9b5ba4bb2d97518399fa74c2c384384f052f.tar.gz chromium_src-c01b9b5ba4bb2d97518399fa74c2c384384f052f.tar.bz2 |
Misc. tidy up of various comments found whilst learning the codebase.
Fix a lint warning in render_messages.h (supersedes http://codereview.chromium.org/464072/show)
Also implement a couple comments in geolocaiton/ in follow up to http://codereview.chromium.org/604019
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/600128
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@39222 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/task.h')
-rw-r--r-- | base/task.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/task.h b/base/task.h index de5da77..91ec520 100644 --- a/base/task.h +++ b/base/task.h @@ -48,7 +48,7 @@ class CancelableTask : public Task { // // public: // // It is safe to suppress warning 4355 here. -// MyClass() : some_method_factory_(this) { } +// MyClass() : ALLOW_THIS_IN_INITIALIZER_LIST(some_method_factory_(this)) { } // // void SomeMethod() { // // If this function might be called directly, you might want to revoke |