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

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

Issue 8102019: redesign and reimplement proxy config service and tracker, revise proxy ui on cros (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #pragma once 9 #pragma once
10 10
11 #include <string> 11 #include <string>
12 12
13 #include "base/basictypes.h" 13 #include "base/basictypes.h"
14 #include "base/logging.h" 14 #include "base/logging.h"
15 #include "chrome/browser/net/preconnect.h" // TODO: remove this. 15 #include "chrome/browser/net/preconnect.h" // TODO: remove this.
16 #include "chrome/browser/net/pref_proxy_config_tracker.h"
16 #include "chrome/common/extensions/extension_constants.h" 17 #include "chrome/common/extensions/extension_constants.h"
17 #include "content/browser/browser_context.h" 18 #include "content/browser/browser_context.h"
18 19
19 namespace base { 20 namespace base {
20 class Time; 21 class Time;
21 } 22 }
22 23
23 namespace chromeos { 24 namespace chromeos {
24 class LibCrosServiceLibraryImpl; 25 class LibCrosServiceLibraryImpl;
25 class ResetDefaultProxyConfigServiceTask; 26 class ResetDefaultProxyConfigServiceTask;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 class ExtensionPrefValueMap; 60 class ExtensionPrefValueMap;
60 class ExtensionProcessManager; 61 class ExtensionProcessManager;
61 class ExtensionService; 62 class ExtensionService;
62 class ExtensionSpecialStoragePolicy; 63 class ExtensionSpecialStoragePolicy;
63 class FaviconService; 64 class FaviconService;
64 class FindBarState; 65 class FindBarState;
65 class HistoryService; 66 class HistoryService;
66 class HostContentSettingsMap; 67 class HostContentSettingsMap;
67 class NavigationController; 68 class NavigationController;
68 class PasswordStore; 69 class PasswordStore;
69 class PrefProxyConfigTracker;
70 class PrefService; 70 class PrefService;
71 class ProfileSyncFactory; 71 class ProfileSyncFactory;
72 class ProfileSyncService; 72 class ProfileSyncService;
73 class PromoCounter; 73 class PromoCounter;
74 class PromoResourceService; 74 class PromoResourceService;
75 class ProtocolHandlerRegistry; 75 class ProtocolHandlerRegistry;
76 class SQLitePersistentCookieStore; 76 class SQLitePersistentCookieStore;
77 class SSLConfigServiceManager; 77 class SSLConfigServiceManager;
78 class SpeechInputPreferences; 78 class SpeechInputPreferences;
79 class SpellCheckHost; 79 class SpellCheckHost;
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after
567 struct hash<Profile*> { 567 struct hash<Profile*> {
568 std::size_t operator()(Profile* const& p) const { 568 std::size_t operator()(Profile* const& p) const {
569 return reinterpret_cast<std::size_t>(p); 569 return reinterpret_cast<std::size_t>(p);
570 } 570 }
571 }; 571 };
572 572
573 } // namespace __gnu_cxx 573 } // namespace __gnu_cxx
574 #endif 574 #endif
575 575
576 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_ 576 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698