Searched refs:CastWindowAndroid (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/chromecast/shell/browser/android/
H A Dcast_window_android.cc29 bool CastWindowAndroid::RegisterJni(JNIEnv* env) {
33 CastWindowAndroid::CastWindowAndroid(content::WebContents* web_contents) function in class:chromecast::shell::CastWindowAndroid
38 CastWindowAndroid::~CastWindowAndroid() {
42 CastWindowAndroid* CastWindowAndroid::CreateNewWindow(
49 CastWindowAndroid* shell = CreateCastWindowAndroid(
58 CastWindowAndroid* CastWindowAndroid
[all...]
H A Dcast_window_manager.h13 class CastWindowAndroid;
22 // Given a CastWindowAndroid instance, creates and returns a Java wrapper.
24 CreateCastWindowView(CastWindowAndroid* shell);
H A Dcast_window_android.h38 class CastWindowAndroid : public content::WebContentsDelegate, class in namespace:chromecast::shell
42 static CastWindowAndroid* CreateNewWindow(
46 virtual ~CastWindowAndroid();
55 // Registers the JNI methods for CastWindowAndroid.
79 explicit CastWindowAndroid(content::WebContents* web_contents);
81 // Helper to create a new CastWindowAndroid given a newly created WebContents.
82 static CastWindowAndroid* CreateCastWindowAndroid(
89 base::WeakPtrFactory<CastWindowAndroid> weak_factory_;
91 DISALLOW_COPY_AND_ASSIGN(CastWindowAndroid);
H A Dcast_window_manager.cc38 CreateCastWindowView(CastWindowAndroid* shell) {
63 CastWindowAndroid::CreateNewWindow(
70 CastWindowAndroid* window =
71 reinterpret_cast<CastWindowAndroid*>(nativeCastWindow);
/external/chromium_org/chromecast/android/
H A Dcast_jni_registrar.cc18 { "CastWindowAndroid", shell::CastWindowAndroid::RegisterJni },
/external/chromium_org/chromecast/shell/android/apk/src/org/chromium/chromecast/shell/
H A DCastWindowManager.java27 private CastWindowAndroid mActiveCastWindow;
84 public CastWindowAndroid getActiveCastWindow() {
114 CastWindowAndroid shellView =
115 (CastWindowAndroid) inflater.inflate(R.layout.cast_window_view, null);
139 private void closeCastWindow(CastWindowAndroid shellView) {
H A DCastShellActivity.java45 // TODO(byungchul, gunsch): CastShellActivity, CastWindowAndroid, and native CastWindowAndroid
190 if (CastWindowAndroid.ACTION_ENABLE_DEV_TOOLS.equals(intent.getAction())) {
192 } else if (CastWindowAndroid.ACTION_DISABLE_DEV_TOOLS.equals(
201 devtoolsBroadcastIntentFilter.addAction(CastWindowAndroid.ACTION_ENABLE_DEV_TOOLS);
202 devtoolsBroadcastIntentFilter.addAction(CastWindowAndroid.ACTION_DISABLE_DEV_TOOLS);
237 * @return The currently visible {@link CastWindowAndroid} or null if one is not showing.
239 public CastWindowAndroid getActiveCastWindow() {
244 * @return The {@link ContentViewCore} owned by the currently visible {@link CastWindowAndroid},
248 CastWindowAndroid shel
[all...]
H A DCastWindowAndroid.java33 public class CastWindowAndroid extends LinearLayout { class in inherits:LinearLayout
34 public static final String TAG = "CastWindowAndroid";
50 public CastWindowAndroid(Context context, AttributeSet attrs) { method in class:CastWindowAndroid

Completed in 2925 milliseconds