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

Side by Side Diff: chrome/browser/cookies_tree_model.h

Issue 10805015: Move browsing_data_helper files into a separate directory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix chrome_frame build Created 8 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) 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_COOKIES_TREE_MODEL_H_ 5 #ifndef CHROME_BROWSER_COOKIES_TREE_MODEL_H_
6 #define CHROME_BROWSER_COOKIES_TREE_MODEL_H_ 6 #define CHROME_BROWSER_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
11 #include <list> 11 #include <list>
12 #include <string> 12 #include <string>
13 #include <vector> 13 #include <vector>
14 14
15 #include "base/memory/ref_counted.h" 15 #include "base/memory/ref_counted.h"
16 #include "base/memory/weak_ptr.h" 16 #include "base/memory/weak_ptr.h"
17 #include "base/observer_list.h" 17 #include "base/observer_list.h"
18 #include "base/string16.h" 18 #include "base/string16.h"
19 #include "base/utf_string_conversions.h" 19 #include "base/utf_string_conversions.h"
20 #include "chrome/browser/browsing_data_appcache_helper.h" 20 #include "chrome/browser/browsing_data/browsing_data_appcache_helper.h"
21 #include "chrome/browser/browsing_data_database_helper.h" 21 #include "chrome/browser/browsing_data/browsing_data_database_helper.h"
22 #include "chrome/browser/browsing_data_file_system_helper.h" 22 #include "chrome/browser/browsing_data/browsing_data_file_system_helper.h"
23 #include "chrome/browser/browsing_data_indexed_db_helper.h" 23 #include "chrome/browser/browsing_data/browsing_data_indexed_db_helper.h"
24 #include "chrome/browser/browsing_data_local_storage_helper.h" 24 #include "chrome/browser/browsing_data/browsing_data_local_storage_helper.h"
25 #include "chrome/browser/browsing_data_quota_helper.h" 25 #include "chrome/browser/browsing_data/browsing_data_quota_helper.h"
26 #include "chrome/browser/local_data_container.h" 26 #include "chrome/browser/browsing_data/local_data_container.h"
27 #include "chrome/common/content_settings.h" 27 #include "chrome/common/content_settings.h"
28 #include "chrome/common/extensions/extension_set.h" 28 #include "chrome/common/extensions/extension_set.h"
29 #include "net/base/server_bound_cert_store.h" 29 #include "net/base/server_bound_cert_store.h"
30 #include "ui/base/models/tree_node_model.h" 30 #include "ui/base/models/tree_node_model.h"
31 31
32 class BrowsingDataCookieHelper; 32 class BrowsingDataCookieHelper;
33 class BrowsingDataServerBoundCertHelper; 33 class BrowsingDataServerBoundCertHelper;
34 class CookieSettings; 34 class CookieSettings;
35 class CookiesTreeModel; 35 class CookiesTreeModel;
36 class CookieTreeAppCacheNode; 36 class CookieTreeAppCacheNode;
(...skipping 675 matching lines...) Expand 10 before | Expand all | Expand 10 after
712 // Otherwise, use the CanonicalCookie::Domain attribute. 712 // Otherwise, use the CanonicalCookie::Domain attribute.
713 bool group_by_cookie_source_; 713 bool group_by_cookie_source_;
714 714
715 // If this is non-zero, then this model is batching updates (there's a lot of 715 // If this is non-zero, then this model is batching updates (there's a lot of
716 // notifications coming down the pipe). This is an integer is used to balance 716 // notifications coming down the pipe). This is an integer is used to balance
717 // calls to Begin/EndBatch() if they're called in a nested manner. 717 // calls to Begin/EndBatch() if they're called in a nested manner.
718 int batch_update_; 718 int batch_update_;
719 }; 719 };
720 720
721 #endif // CHROME_BROWSER_COOKIES_TREE_MODEL_H_ 721 #endif // CHROME_BROWSER_COOKIES_TREE_MODEL_H_
OLDNEW
« no previous file with comments | « chrome/browser/content_settings/tab_specific_content_settings.cc ('k') | chrome/browser/cookies_tree_model.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698