Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Side by Side Diff: content/public/android/java/src/org/chromium/content/browser/ContentViewClient.java

Issue 13669003: Refactoring ContentVideoViewContextDelegate.java (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 package org.chromium.content.browser; 5 package org.chromium.content.browser;
6 6
7 import android.content.ActivityNotFoundException; 7 import android.content.ActivityNotFoundException;
8 import android.content.Context; 8 import android.content.Context;
9 import android.content.Intent; 9 import android.content.Intent;
10 import android.util.Log; 10 import android.util.Log;
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 167
168 try { 168 try {
169 context.startActivity(intent); 169 context.startActivity(intent);
170 } catch (ActivityNotFoundException ex) { 170 } catch (ActivityNotFoundException ex) {
171 Log.w(TAG, "No application can handle " + intentUrl); 171 Log.w(TAG, "No application can handle " + intentUrl);
172 } 172 }
173 } 173 }
174 174
175 public void onExternalVideoSurfaceRequested(int playerId) { 175 public void onExternalVideoSurfaceRequested(int playerId) {
176 } 176 }
177
178 public ContentVideoViewClient getContentVideoViewClient() {
179 return null;
180 }
177 } 181 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698