| Index: content/public/android/java/src/org/chromium/content/browser/ContentVideoViewDelegate.java
|
| diff --git a/content/public/android/java/src/org/chromium/content/browser/ContentVideoViewDelegate.java b/content/public/android/java/src/org/chromium/content/browser/ContentVideoViewDelegate.java
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c19f3f43f7fae420be0d99363128c3c854dbc56d
|
| --- /dev/null
|
| +++ b/content/public/android/java/src/org/chromium/content/browser/ContentVideoViewDelegate.java
|
| @@ -0,0 +1,14 @@
|
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +package org.chromium.content.browser;
|
| +
|
| +import android.content.Context;
|
| +import android.view.View;
|
| +
|
| +public interface ContentVideoViewDelegate {
|
| + public void onShowCustomView(View view);
|
| + public void onDestroyContentVideoView();
|
| + public Context getContext();
|
| +}
|
|
|