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

Side by Side Diff: webkit/appcache/appcache_storage_impl.h

Issue 1600002: Indicate in the tab UI if appcache creation was blocked by privacy settings. (Closed)
Patch Set: updates Created 10 years, 8 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
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #ifndef WEBKIT_APPCACHE_APPCACHE_STORAGE_IMPL_H_ 5 #ifndef WEBKIT_APPCACHE_APPCACHE_STORAGE_IMPL_H_
6 #define WEBKIT_APPCACHE_APPCACHE_STORAGE_IMPL_H_ 6 #define WEBKIT_APPCACHE_APPCACHE_STORAGE_IMPL_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
11 #include <vector> 11 #include <vector>
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 // Used to short-circuit certain operations without having to schedule 145 // Used to short-circuit certain operations without having to schedule
146 // any tasks on the background database thread. 146 // any tasks on the background database thread.
147 std::set<GURL> origins_with_groups_; 147 std::set<GURL> origins_with_groups_;
148 std::deque<Task*> pending_simple_tasks_; 148 std::deque<Task*> pending_simple_tasks_;
149 ScopedRunnableMethodFactory<AppCacheStorageImpl> method_factory_; 149 ScopedRunnableMethodFactory<AppCacheStorageImpl> method_factory_;
150 }; 150 };
151 151
152 } // namespace appcache 152 } // namespace appcache
153 153
154 #endif // WEBKIT_APPCACHE_APPCACHE_STORAGE_IMPL_H_ 154 #endif // WEBKIT_APPCACHE_APPCACHE_STORAGE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698