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

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

Issue 200493006: Move the ShortcutsBackend from history to autocomplete so that it can fully (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 6 years, 9 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 49
50 namespace content { 50 namespace content {
51 class WebUI; 51 class WebUI;
52 } 52 }
53 53
54 namespace fileapi { 54 namespace fileapi {
55 class FileSystemContext; 55 class FileSystemContext;
56 } 56 }
57 57
58 namespace history { 58 namespace history {
59 class ShortcutsBackend;
60 class TopSites; 59 class TopSites;
61 } 60 }
62 61
63 namespace net { 62 namespace net {
64 class SSLConfigService; 63 class SSLConfigService;
65 } 64 }
66 65
67 namespace user_prefs { 66 namespace user_prefs {
68 class PrefRegistrySyncable; 67 class PrefRegistrySyncable;
69 } 68 }
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 struct hash<Profile*> { 401 struct hash<Profile*> {
403 std::size_t operator()(Profile* const& p) const { 402 std::size_t operator()(Profile* const& p) const {
404 return reinterpret_cast<std::size_t>(p); 403 return reinterpret_cast<std::size_t>(p);
405 } 404 }
406 }; 405 };
407 406
408 } // namespace BASE_HASH_NAMESPACE 407 } // namespace BASE_HASH_NAMESPACE
409 #endif 408 #endif
410 409
411 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_ 410 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_
OLDNEW
« no previous file with comments | « chrome/browser/profiles/chrome_browser_main_extra_parts_profiles.cc ('k') | chrome/browser/profiles/profile_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698