Chromium Code Reviews| Index: chrome/test/base/testing_profile.cc |
| diff --git a/chrome/test/base/testing_profile.cc b/chrome/test/base/testing_profile.cc |
| index bc655aa35e16422210ecc436412b6d3ddb818eef..d82d2b5db90bb5ede6ad84ee936790a63f72c1ec 100644 |
| --- a/chrome/test/base/testing_profile.cc |
| +++ b/chrome/test/base/testing_profile.cc |
| @@ -700,12 +700,14 @@ TestingProfile::GetMediaRequestContextForStoragePartition( |
| void TestingProfile::RequestMIDISysExPermission( |
| int render_process_id, |
| int render_view_id, |
| + int bridge_id, |
| const GURL& requesting_frame, |
| const MIDISysExPermissionCallback& callback) { |
| // Always reject requests for testing. |
| callback.Run(false); |
| } |
| + |
|
scherkus (not reviewing)
2013/10/28 20:48:54
remove this extra blank line that seemed to sneak
Kibeom Kim (inactive)
2013/10/29 10:25:10
Done.
|
| net::URLRequestContextGetter* TestingProfile::GetRequestContextForExtensions() { |
| if (!extensions_request_context_.get()) |
| extensions_request_context_ = new TestExtensionURLRequestContextGetter(); |