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/browser/mock_resource_context.h" | 5 #include "content/browser/mock_resource_context.h" |
6 | 6 |
7 #include "base/lazy_instance.h" | 7 #include "base/lazy_instance.h" |
8 #include "net/url_request/url_request_test_util.h" | 8 #include "net/url_request/url_request_test_util.h" |
9 | 9 |
10 namespace content { | 10 namespace content { |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 | 70 |
71 media_stream::MediaStreamManager* | 71 media_stream::MediaStreamManager* |
72 MockResourceContext::GetMediaStreamManager() { | 72 MockResourceContext::GetMediaStreamManager() { |
73 return media_stream_manager_; | 73 return media_stream_manager_; |
74 } | 74 } |
75 | 75 |
76 AudioManager* MockResourceContext::GetAudioManager() { | 76 AudioManager* MockResourceContext::GetAudioManager() { |
77 return audio_manager_; | 77 return audio_manager_; |
78 } | 78 } |
79 | 79 |
| 80 WebKitContext* MockResourceContext::GetWebKitContext() { |
| 81 return NULL; |
| 82 } |
| 83 |
80 } // namespace content | 84 } // namespace content |
OLD | NEW |