OLD | NEW |
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 #include "content/shell/shell_resource_context.h" | 5 #include "content/shell/shell_resource_context.h" |
6 | 6 |
7 #include "content/browser/chrome_blob_storage_context.h" | 7 #include "content/browser/chrome_blob_storage_context.h" |
8 #include "content/shell/shell_url_request_context_getter.h" | 8 #include "content/shell/shell_url_request_context_getter.h" |
9 | 9 |
10 namespace content { | 10 namespace content { |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 | 57 |
58 media_stream::MediaStreamManager* | 58 media_stream::MediaStreamManager* |
59 ShellResourceContext::GetMediaStreamManager() { | 59 ShellResourceContext::GetMediaStreamManager() { |
60 return NULL; | 60 return NULL; |
61 } | 61 } |
62 | 62 |
63 AudioManager* ShellResourceContext::GetAudioManager() { | 63 AudioManager* ShellResourceContext::GetAudioManager() { |
64 return NULL; | 64 return NULL; |
65 } | 65 } |
66 | 66 |
| 67 WebKitContext* ShellResourceContext::GetWebKitContext() { |
| 68 return NULL; |
| 69 } |
| 70 |
67 } // namespace content | 71 } // namespace content |
OLD | NEW |