| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |