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

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

Issue 7484072: Migrate geolocation settings to host content settings map. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: " Created 9 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) 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
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 virtual SSLHostState* GetSSLHostState() = 0; 190 virtual SSLHostState* GetSSLHostState() = 0;
191 virtual DownloadManager* GetDownloadManager() = 0; 191 virtual DownloadManager* GetDownloadManager() = 0;
192 virtual bool HasCreatedDownloadManager() const = 0; 192 virtual bool HasCreatedDownloadManager() const = 0;
193 virtual quota::QuotaManager* GetQuotaManager() = 0; 193 virtual quota::QuotaManager* GetQuotaManager() = 0;
194 virtual net::URLRequestContextGetter* GetRequestContext() = 0; 194 virtual net::URLRequestContextGetter* GetRequestContext() = 0;
195 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( 195 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess(
196 int renderer_child_id) = 0; 196 int renderer_child_id) = 0;
197 virtual net::URLRequestContextGetter* GetRequestContextForMedia() = 0; 197 virtual net::URLRequestContextGetter* GetRequestContextForMedia() = 0;
198 virtual const content::ResourceContext& GetResourceContext() = 0; 198 virtual const content::ResourceContext& GetResourceContext() = 0;
199 virtual HostZoomMap* GetHostZoomMap() = 0; 199 virtual HostZoomMap* GetHostZoomMap() = 0;
200 virtual GeolocationContentSettingsMap* GetGeolocationContentSettingsMap() = 0;
201 virtual GeolocationPermissionContext* GetGeolocationPermissionContext() = 0; 200 virtual GeolocationPermissionContext* GetGeolocationPermissionContext() = 0;
202 virtual WebKitContext* GetWebKitContext() = 0; 201 virtual WebKitContext* GetWebKitContext() = 0;
203 virtual ChromeBlobStorageContext* GetBlobStorageContext() = 0; 202 virtual ChromeBlobStorageContext* GetBlobStorageContext() = 0;
204 203
205 // content::BrowserContext implementation ------------------------------------ 204 // content::BrowserContext implementation ------------------------------------
206 205
207 // Returns the name associated with this profile. This name is displayed in 206 // Returns the name associated with this profile. This name is displayed in
208 // the browser frame. 207 // the browser frame.
209 virtual std::string GetProfileName() = 0; 208 virtual std::string GetProfileName() = 0;
210 209
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
582 struct hash<Profile*> { 581 struct hash<Profile*> {
583 std::size_t operator()(Profile* const& p) const { 582 std::size_t operator()(Profile* const& p) const {
584 return reinterpret_cast<std::size_t>(p); 583 return reinterpret_cast<std::size_t>(p);
585 } 584 }
586 }; 585 };
587 586
588 } // namespace __gnu_cxx 587 } // namespace __gnu_cxx
589 #endif 588 #endif
590 589
591 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_ 590 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698