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

Side by Side Diff: webkit/appcache/appcache_backend_impl.cc

Issue 7342047: Cleanup base/stl_util (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removed unneeded include + rebase Created 9 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "webkit/appcache/appcache_backend_impl.h" 5 #include "webkit/appcache/appcache_backend_impl.h"
6 6
7 #include "base/stl_util-inl.h" 7 #include "base/stl_util.h"
8 #include "webkit/appcache/appcache.h" 8 #include "webkit/appcache/appcache.h"
9 #include "webkit/appcache/appcache_group.h" 9 #include "webkit/appcache/appcache_group.h"
10 #include "webkit/appcache/appcache_service.h" 10 #include "webkit/appcache/appcache_service.h"
11 #include "webkit/appcache/web_application_cache_host_impl.h" 11 #include "webkit/appcache/web_application_cache_host_impl.h"
12 12
13 namespace appcache { 13 namespace appcache {
14 14
15 AppCacheBackendImpl::AppCacheBackendImpl() 15 AppCacheBackendImpl::AppCacheBackendImpl()
16 : service_(NULL), 16 : service_(NULL),
17 frontend_(NULL), 17 frontend_(NULL),
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 void AppCacheBackendImpl::GetResourceList( 142 void AppCacheBackendImpl::GetResourceList(
143 int host_id, std::vector<appcache::AppCacheResourceInfo>* resource_infos) { 143 int host_id, std::vector<appcache::AppCacheResourceInfo>* resource_infos) {
144 AppCacheHost* host = GetHost(host_id); 144 AppCacheHost* host = GetHost(host_id);
145 if (!host) 145 if (!host)
146 return; 146 return;
147 147
148 host->GetResourceList(resource_infos); 148 host->GetResourceList(resource_infos);
149 } 149 }
150 150
151 } // namespace appcache 151 } // namespace appcache
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698