OLD | NEW |
---|---|
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/renderer/media/video_frame_provider.h" | 5 #include "content/browser/browser_startup_configuration.h" |
6 | 6 |
7 namespace content { | 7 namespace content { |
8 | 8 |
9 VideoFrameProvider::VideoFrameProvider() {} | 9 bool BrowserMayStartAsynchronously() { return false; } |
10 | 10 |
11 VideoFrameProvider::~VideoFrameProvider() {} | 11 void BrowserStartupComplete(int result) {} |
jam
2013/07/31 00:29:27
this way of switching behavior for android/non-and
aberent
2013/07/31 17:24:49
Done.
| |
12 | 12 |
13 } // namespace content | 13 } // namespace content |
OLD | NEW |