OLD | NEW |
---|---|
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_IMPL_H_ | 7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
8 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 8 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
9 | 9 |
10 #include <string> | 10 #include <string> |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
78 int render_process_id, | 78 int render_process_id, |
79 int render_view_id, | 79 int render_view_id, |
80 int bridge_id, | 80 int bridge_id, |
81 const GURL& requesting_frame, | 81 const GURL& requesting_frame, |
82 const MIDISysExPermissionCallback& callback) OVERRIDE; | 82 const MIDISysExPermissionCallback& callback) OVERRIDE; |
83 virtual void CancelMIDISysExPermissionRequest( | 83 virtual void CancelMIDISysExPermissionRequest( |
84 int render_process_id, | 84 int render_process_id, |
85 int render_view_id, | 85 int render_view_id, |
86 int bridge_id, | 86 int bridge_id, |
87 const GURL& requesting_frame) OVERRIDE; | 87 const GURL& requesting_frame) OVERRIDE; |
88 virtual void RequestProtectedMediaIdentifierPermission( | |
89 int render_process_id, | |
90 int render_view_id, | |
91 int bridge_id, | |
92 int group_id, | |
93 const GURL& requesting_frame, | |
94 const ProtectedMediaIdentifierPermissionCallback& callback) OVERRIDE; | |
95 virtual void CancelProtectedMediaIdentifierPermissionRequests(int group_id) | |
96 OVERRIDE; | |
jam
2014/01/02 22:50:56
ditto
Kibeom Kim (inactive)
2014/01/02 23:26:36
Done.
| |
88 virtual content::ResourceContext* GetResourceContext() OVERRIDE; | 97 virtual content::ResourceContext* GetResourceContext() OVERRIDE; |
89 virtual content::GeolocationPermissionContext* | 98 virtual content::GeolocationPermissionContext* |
90 GetGeolocationPermissionContext() OVERRIDE; | 99 GetGeolocationPermissionContext() OVERRIDE; |
91 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; | 100 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; |
92 | 101 |
93 // Profile implementation: | 102 // Profile implementation: |
94 virtual scoped_refptr<base::SequencedTaskRunner> GetIOTaskRunner() OVERRIDE; | 103 virtual scoped_refptr<base::SequencedTaskRunner> GetIOTaskRunner() OVERRIDE; |
95 // Note that this implementation returns the Google-services username, if any, | 104 // Note that this implementation returns the Google-services username, if any, |
96 // not the Chrome user's display name. | 105 // not the Chrome user's display name. |
97 virtual std::string GetProfileName() OVERRIDE; | 106 virtual std::string GetProfileName() OVERRIDE; |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
273 // components/browser_context_keyed_service/browser_context_keyed_service_fa ctory.{h,cc} | 282 // components/browser_context_keyed_service/browser_context_keyed_service_fa ctory.{h,cc} |
274 | 283 |
275 Profile::Delegate* delegate_; | 284 Profile::Delegate* delegate_; |
276 | 285 |
277 chrome_browser_net::Predictor* predictor_; | 286 chrome_browser_net::Predictor* predictor_; |
278 | 287 |
279 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 288 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
280 }; | 289 }; |
281 | 290 |
282 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 291 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
OLD | NEW |