| Index: content/public/android/java/src/org/chromium/content/browser/MediaResourceGetter.java
|
| diff --git a/content/public/android/java/src/org/chromium/content/browser/MediaResourceGetter.java b/content/public/android/java/src/org/chromium/content/browser/MediaResourceGetter.java
|
| index 1597d43528ef7e06fdaf91db0e76b04b65ecdb92..de414e2ad8f61122f9694d497df271266d8be616 100644
|
| --- a/content/public/android/java/src/org/chromium/content/browser/MediaResourceGetter.java
|
| +++ b/content/public/android/java/src/org/chromium/content/browser/MediaResourceGetter.java
|
| @@ -56,16 +56,24 @@ class MediaResourceGetter {
|
| // then we must return NaN. If it is unbounded, then positive infinity.
|
| // http://www.w3.org/html/wg/drafts/html/master/embedded-content-0.html
|
| @CalledByNative("MediaMetadata")
|
| - int getDurationInMilliseconds() { return mDurationInMilliseconds; }
|
| + int getDurationInMilliseconds() {
|
| + return mDurationInMilliseconds;
|
| + }
|
|
|
| @CalledByNative("MediaMetadata")
|
| - int getWidth() { return mWidth; }
|
| + int getWidth() {
|
| + return mWidth;
|
| + }
|
|
|
| @CalledByNative("MediaMetadata")
|
| - int getHeight() { return mHeight; }
|
| + int getHeight() {
|
| + return mHeight;
|
| + }
|
|
|
| @CalledByNative("MediaMetadata")
|
| - boolean isSuccess() { return mSuccess; }
|
| + boolean isSuccess() {
|
| + return mSuccess;
|
| + }
|
|
|
| @Override
|
| public String toString() {
|
|
|