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

Side by Side Diff: chrome/browser/profiles/profile.h

Issue 442383002: Move storage-related files from webkit/ to new top-level directory storage/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 4 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 // This class gathers state related to a single user profile. 5 // This class gathers state related to a single user profile.
6 6
7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_H_ 7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_H_
8 #define CHROME_BROWSER_PROFILES_PROFILE_H_ 8 #define CHROME_BROWSER_PROFILES_PROFILE_H_
9 9
10 #include <string> 10 #include <string>
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 42
43 namespace chromeos { 43 namespace chromeos {
44 class LibCrosServiceLibraryImpl; 44 class LibCrosServiceLibraryImpl;
45 class ResetDefaultProxyConfigServiceTask; 45 class ResetDefaultProxyConfigServiceTask;
46 } 46 }
47 47
48 namespace content { 48 namespace content {
49 class WebUI; 49 class WebUI;
50 } 50 }
51 51
52 namespace fileapi { 52 namespace storage {
53 class FileSystemContext; 53 class FileSystemContext;
54 } 54 }
55 55
56 namespace history { 56 namespace history {
57 class TopSites; 57 class TopSites;
58 } 58 }
59 59
60 namespace net { 60 namespace net {
61 class SSLConfigService; 61 class SSLConfigService;
62 } 62 }
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 struct hash<Profile*> { 412 struct hash<Profile*> {
413 std::size_t operator()(Profile* const& p) const { 413 std::size_t operator()(Profile* const& p) const {
414 return reinterpret_cast<std::size_t>(p); 414 return reinterpret_cast<std::size_t>(p);
415 } 415 }
416 }; 416 };
417 417
418 } // namespace BASE_HASH_NAMESPACE 418 } // namespace BASE_HASH_NAMESPACE
419 #endif 419 #endif
420 420
421 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_ 421 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_
OLDNEW
« no previous file with comments | « chrome/browser/profiles/off_the_record_profile_io_data.cc ('k') | chrome/browser/profiles/profile_impl_io_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698