| 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 CHROME_BROWSER_BROWSING_DATA_COOKIES_TREE_MODEL_H_ | 5 #ifndef CHROME_BROWSER_BROWSING_DATA_COOKIES_TREE_MODEL_H_ |
| 6 #define CHROME_BROWSER_BROWSING_DATA_COOKIES_TREE_MODEL_H_ | 6 #define CHROME_BROWSER_BROWSING_DATA_COOKIES_TREE_MODEL_H_ |
| 7 | 7 |
| 8 // TODO(viettrungluu): This header file #includes far too much and has too much | 8 // TODO(viettrungluu): This header file #includes far too much and has too much |
| 9 // inline code (which shouldn't be inline). | 9 // inline code (which shouldn't be inline). |
| 10 | 10 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 #include "chrome/browser/browsing_data/browsing_data_indexed_db_helper.h" | 26 #include "chrome/browser/browsing_data/browsing_data_indexed_db_helper.h" |
| 27 #include "chrome/browser/browsing_data/browsing_data_local_storage_helper.h" | 27 #include "chrome/browser/browsing_data/browsing_data_local_storage_helper.h" |
| 28 #include "chrome/browser/browsing_data/browsing_data_quota_helper.h" | 28 #include "chrome/browser/browsing_data/browsing_data_quota_helper.h" |
| 29 #include "chrome/browser/browsing_data/browsing_data_service_worker_helper.h" | 29 #include "chrome/browser/browsing_data/browsing_data_service_worker_helper.h" |
| 30 #include "chrome/browser/browsing_data/local_data_container.h" | 30 #include "chrome/browser/browsing_data/local_data_container.h" |
| 31 #include "components/content_settings/core/common/content_settings.h" | 31 #include "components/content_settings/core/common/content_settings.h" |
| 32 #include "extensions/features/features.h" | 32 #include "extensions/features/features.h" |
| 33 #include "net/ssl/channel_id_store.h" | 33 #include "net/ssl/channel_id_store.h" |
| 34 #include "ui/base/models/tree_node_model.h" | 34 #include "ui/base/models/tree_node_model.h" |
| 35 | 35 |
| 36 class BrowsingDataChannelIDHelper; | |
| 37 class BrowsingDataCookieHelper; | 36 class BrowsingDataCookieHelper; |
| 38 class CookiesTreeModel; | 37 class CookiesTreeModel; |
| 39 class CookieTreeAppCacheNode; | 38 class CookieTreeAppCacheNode; |
| 40 class CookieTreeAppCachesNode; | 39 class CookieTreeAppCachesNode; |
| 41 class CookieTreeCacheStorageNode; | 40 class CookieTreeCacheStorageNode; |
| 42 class CookieTreeCacheStoragesNode; | 41 class CookieTreeCacheStoragesNode; |
| 43 class CookieTreeChannelIDNode; | 42 class CookieTreeChannelIDNode; |
| 44 class CookieTreeChannelIDsNode; | 43 class CookieTreeChannelIDsNode; |
| 45 class CookieTreeCookieNode; | 44 class CookieTreeCookieNode; |
| 46 class CookieTreeCookiesNode; | 45 class CookieTreeCookiesNode; |
| (...skipping 880 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 927 | 926 |
| 928 // Counts how many batches have started already. If this is non-zero and lower | 927 // Counts how many batches have started already. If this is non-zero and lower |
| 929 // than batches_ended_, then this model is still batching updates. | 928 // than batches_ended_, then this model is still batching updates. |
| 930 int batches_started_ = 0; | 929 int batches_started_ = 0; |
| 931 | 930 |
| 932 // Counts how many batches have finished. | 931 // Counts how many batches have finished. |
| 933 int batches_ended_ = 0; | 932 int batches_ended_ = 0; |
| 934 }; | 933 }; |
| 935 | 934 |
| 936 #endif // CHROME_BROWSER_BROWSING_DATA_COOKIES_TREE_MODEL_H_ | 935 #endif // CHROME_BROWSER_BROWSING_DATA_COOKIES_TREE_MODEL_H_ |
| OLD | NEW |