summaryrefslogtreecommitdiffstats
path: root/webkit/appcache/appcache_group.h
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-02-05 22:23:20 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-02-05 22:23:20 +0000
commit225c8f507421a2eff2ed7a900104431d04ed7e5e (patch)
tree770b7081fc8f2a15abe4635938e03550f010a526 /webkit/appcache/appcache_group.h
parentf3f0c05dfbcbfec2ecbb79ba9bab6ffc8f93ea32 (diff)
downloadchromium_src-225c8f507421a2eff2ed7a900104431d04ed7e5e.zip
chromium_src-225c8f507421a2eff2ed7a900104431d04ed7e5e.tar.gz
chromium_src-225c8f507421a2eff2ed7a900104431d04ed7e5e.tar.bz2
linux: build with -Wextra
95% of this is removing "const" from return types, but turning this on found one bug! (A "for" loop that expected its iterator to go negative but which was using an unsigned type.) BUG=34160 Review URL: http://codereview.chromium.org/570012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@38266 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/appcache/appcache_group.h')
-rw-r--r--webkit/appcache/appcache_group.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/appcache/appcache_group.h b/webkit/appcache/appcache_group.h
index 8d620a8..1558b5a8 100644
--- a/webkit/appcache/appcache_group.h
+++ b/webkit/appcache/appcache_group.h
@@ -49,7 +49,7 @@ class AppCacheGroup : public base::RefCounted<AppCacheGroup> {
void AddUpdateObserver(UpdateObserver* observer);
void RemoveUpdateObserver(UpdateObserver* observer);
- const int64 group_id() const { return group_id_; }
+ int64 group_id() const { return group_id_; }
const GURL& manifest_url() const { return manifest_url_; }
bool is_obsolete() const { return is_obsolete_; }