OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_CONTEXT_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_CONTEXT_IMPL_H_ |
6 #define CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_CONTEXT_IMPL_H_ | 6 #define CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_CONTEXT_IMPL_H_ |
7 #pragma once | |
8 | 7 |
9 #include <map> | 8 #include <map> |
10 #include <set> | 9 #include <set> |
11 | 10 |
12 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
13 #include "base/file_path.h" | 12 #include "base/file_path.h" |
14 #include "base/gtest_prod_util.h" | 13 #include "base/gtest_prod_util.h" |
15 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
16 #include "content/public/browser/indexed_db_context.h" | 15 #include "content/public/browser/indexed_db_context.h" |
17 #include "googleurl/src/gurl.h" | 16 #include "googleurl/src/gurl.h" |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 scoped_refptr<quota::QuotaManagerProxy> quota_manager_proxy_; | 122 scoped_refptr<quota::QuotaManagerProxy> quota_manager_proxy_; |
124 scoped_ptr<std::set<GURL> > origin_set_; | 123 scoped_ptr<std::set<GURL> > origin_set_; |
125 OriginToSizeMap origin_size_map_; | 124 OriginToSizeMap origin_size_map_; |
126 OriginToSizeMap space_available_map_; | 125 OriginToSizeMap space_available_map_; |
127 std::map<GURL, unsigned int> connection_count_; | 126 std::map<GURL, unsigned int> connection_count_; |
128 | 127 |
129 DISALLOW_COPY_AND_ASSIGN(IndexedDBContextImpl); | 128 DISALLOW_COPY_AND_ASSIGN(IndexedDBContextImpl); |
130 }; | 129 }; |
131 | 130 |
132 #endif // CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_CONTEXT_IMPL_H_ | 131 #endif // CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_CONTEXT_IMPL_H_ |
OLD | NEW |