| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE; | 76 virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE; |
| 77 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( | 77 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( |
| 78 int renderer_child_id) OVERRIDE; | 78 int renderer_child_id) OVERRIDE; |
| 79 virtual net::URLRequestContextGetter* GetMediaRequestContext() OVERRIDE; | 79 virtual net::URLRequestContextGetter* GetMediaRequestContext() OVERRIDE; |
| 80 virtual net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess( | 80 virtual net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess( |
| 81 int renderer_child_id) OVERRIDE; | 81 int renderer_child_id) OVERRIDE; |
| 82 virtual net::URLRequestContextGetter* | 82 virtual net::URLRequestContextGetter* |
| 83 GetMediaRequestContextForStoragePartition( | 83 GetMediaRequestContextForStoragePartition( |
| 84 const base::FilePath& partition_path, | 84 const base::FilePath& partition_path, |
| 85 bool in_memory) OVERRIDE; | 85 bool in_memory) OVERRIDE; |
| 86 virtual void RequestMIDISysExPermission( | 86 virtual void RequestMidiSysExPermission( |
| 87 int render_process_id, | 87 int render_process_id, |
| 88 int render_view_id, | 88 int render_view_id, |
| 89 int bridge_id, | 89 int bridge_id, |
| 90 const GURL& requesting_frame, | 90 const GURL& requesting_frame, |
| 91 const MIDISysExPermissionCallback& callback) OVERRIDE; | 91 const MidiSysExPermissionCallback& callback) OVERRIDE; |
| 92 virtual void CancelMIDISysExPermissionRequest( | 92 virtual void CancelMidiSysExPermissionRequest( |
| 93 int render_process_id, | 93 int render_process_id, |
| 94 int render_view_id, | 94 int render_view_id, |
| 95 int bridge_id, | 95 int bridge_id, |
| 96 const GURL& requesting_frame) OVERRIDE; | 96 const GURL& requesting_frame) OVERRIDE; |
| 97 virtual void RequestProtectedMediaIdentifierPermission( | 97 virtual void RequestProtectedMediaIdentifierPermission( |
| 98 int render_process_id, | 98 int render_process_id, |
| 99 int render_view_id, | 99 int render_view_id, |
| 100 int bridge_id, | 100 int bridge_id, |
| 101 int group_id, | 101 int group_id, |
| 102 const GURL& requesting_frame, | 102 const GURL& requesting_frame, |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 // components/browser_context_keyed_service/browser_context_keyed_service_fa
ctory.{h,cc} | 291 // components/browser_context_keyed_service/browser_context_keyed_service_fa
ctory.{h,cc} |
| 292 | 292 |
| 293 Profile::Delegate* delegate_; | 293 Profile::Delegate* delegate_; |
| 294 | 294 |
| 295 chrome_browser_net::Predictor* predictor_; | 295 chrome_browser_net::Predictor* predictor_; |
| 296 | 296 |
| 297 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 297 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
| 298 }; | 298 }; |
| 299 | 299 |
| 300 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 300 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| OLD | NEW |