Chromium Code Reviews| Index: content/public/browser/android/media_controls_delegate.cc |
| diff --git a/content/public/common/presentation_constants.cc b/content/public/browser/android/media_controls_delegate.cc |
| similarity index 62% |
| copy from content/public/common/presentation_constants.cc |
| copy to content/public/browser/android/media_controls_delegate.cc |
| index da7e6acd3766d99187726263e9734dd2f62f623a..0acb065a2e42678115715435132aec5db3cd9db3 100644 |
| --- a/content/public/common/presentation_constants.cc |
| +++ b/content/public/browser/android/media_controls_delegate.cc |
| @@ -2,10 +2,12 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -#include "content/public/common/presentation_constants.h" |
| +#include "content/public/browser/android/media_controls_delegate.h" |
| namespace content { |
| -const size_t kMaxPresentationSessionMessageSize = 64 * 1024; // 64 KB. |
| +bool MediaControlsDelegate::IsPaused() { |
| + return false; |
| +} |
|
mlamouri (slow - plz ping)
2015/06/18 16:43:23
I would get ride of that file and make the class a
whywhat
2015/06/19 16:00:34
right.
|
| } // namespace content |