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

Unified Diff: android_webview/java/src/org/chromium/android_webview/AwNativeWindow.java

Issue 14169011: [Android] Rename NativeWindow to WindowAndroid. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Finish Renaming 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 side-by-side diff with in-line comments
Download patch
Index: android_webview/java/src/org/chromium/android_webview/AwNativeWindow.java
diff --git a/android_webview/java/src/org/chromium/android_webview/AwNativeWindow.java b/android_webview/java/src/org/chromium/android_webview/AwNativeWindow.java
deleted file mode 100644
index 31f77dc7d49988e0e1d707e68e1d05c10902bb99..0000000000000000000000000000000000000000
--- a/android_webview/java/src/org/chromium/android_webview/AwNativeWindow.java
+++ /dev/null
@@ -1,28 +0,0 @@
-// 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.android_webview;
-
-import android.content.Context;
-import android.content.Intent;
-
-import org.chromium.ui.gfx.NativeWindow;
-
-public class AwNativeWindow extends NativeWindow {
- public AwNativeWindow(Context context) {
- super(context);
- }
-
- // The following stubs are required for displaying a file picker which is
- // unsupported in the WebView.
- public void sendBroadcast(Intent intent) {
- }
-
- public boolean showIntent(Intent intent, IntentCallback callback, String error) {
- return false;
- }
-
- public void showError(String error) {
- }
-}

Powered by Google App Engine
This is Rietveld 408576698