diff options
author | b.kelemen@samsung.com <b.kelemen@samsung.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-07 19:17:32 +0000 |
---|---|---|
committer | b.kelemen@samsung.com <b.kelemen@samsung.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-07 19:17:32 +0000 |
commit | 8b24bea391075772272e3bee21f00d5793b8696d (patch) | |
tree | 331aca0adbeb99758724387959bb4ab12ed2d786 /content | |
parent | b503935a7c3c3e5d68b11a2cf20b2bd6068871db (diff) | |
download | chromium_src-8b24bea391075772272e3bee21f00d5793b8696d.zip chromium_src-8b24bea391075772272e3bee21f00d5793b8696d.tar.gz chromium_src-8b24bea391075772272e3bee21f00d5793b8696d.tar.bz2 |
Post-commit review fixes after r242570
Fix remaining nits.
BUG=323697
Review URL: https://codereview.chromium.org/125253006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@243346 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content')
-rw-r--r-- | content/browser/android/content_video_view.cc | 12 | ||||
-rw-r--r-- | content/browser/android/content_video_view.h | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/content/browser/android/content_video_view.cc b/content/browser/android/content_video_view.cc index d4ba774..9edadb4 100644 --- a/content/browser/android/content_video_view.cc +++ b/content/browser/android/content_video_view.cc @@ -199,12 +199,12 @@ JavaObjectWeakGlobalRef ContentVideoView::CreateJavaObject() { ContentViewCoreImpl* content_view_core = manager_->GetContentViewCore(); JNIEnv *env = AttachCurrentThread(); return JavaObjectWeakGlobalRef( - env, - Java_ContentVideoView_createContentVideoView( - env, - content_view_core->GetContext().obj(), - reinterpret_cast<intptr_t>(this), - content_view_core->GetContentVideoViewClient().obj()).obj()); + env, + Java_ContentVideoView_createContentVideoView( + env, + content_view_core->GetContext().obj(), + reinterpret_cast<intptr_t>(this), + content_view_core->GetContentVideoViewClient().obj()).obj()); } void ContentVideoView::DestroyContentVideoView(bool native_view_destroyed) { diff --git a/content/browser/android/content_video_view.h b/content/browser/android/content_video_view.h index 6ffb786..ad8945a 100644 --- a/content/browser/android/content_video_view.h +++ b/content/browser/android/content_video_view.h @@ -31,7 +31,7 @@ class ContentVideoView { const base::android::ScopedJavaLocalRef<jobject>& client, BrowserMediaPlayerManager* manager); - ContentVideoView(BrowserMediaPlayerManager* manager); + explicit ContentVideoView(BrowserMediaPlayerManager* manager); ~ContentVideoView(); |