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

Unified Diff: android_webview/native/aw_form_database.cc

Issue 2863233002: [WebView] Move files from native to browser (Closed)
Patch Set: Created 3 years, 7 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/native/aw_form_database.cc
diff --git a/android_webview/native/aw_form_database.cc b/android_webview/native/aw_form_database.cc
deleted file mode 100644
index 3e3ebb91117e94dd6d9dc8a3cf3721c26d19c655..0000000000000000000000000000000000000000
--- a/android_webview/native/aw_form_database.cc
+++ /dev/null
@@ -1,44 +0,0 @@
-// Copyright 2013 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.
-
-#include "android_webview/native/aw_form_database.h"
-
-#include "android_webview/browser/aw_browser_context.h"
-#include "android_webview/browser/aw_content_browser_client.h"
-#include "android_webview/browser/aw_form_database_service.h"
-#include "base/android/jni_android.h"
-#include "base/logging.h"
-#include "base/time/time.h"
-#include "jni/AwFormDatabase_jni.h"
-
-using base::android::JavaParamRef;
-
-namespace android_webview {
-
-namespace {
-
-AwFormDatabaseService* GetFormDatabaseService() {
-
- AwBrowserContext* context = AwContentBrowserClient::GetAwBrowserContext();
- AwFormDatabaseService* service = context->GetFormDatabaseService();
- return service;
-}
-
-} // anonymous namespace
-
-// static
-jboolean HasFormData(JNIEnv*, const JavaParamRef<jclass>&) {
- return GetFormDatabaseService()->HasFormData();
-}
-
-// static
-void ClearFormData(JNIEnv*, const JavaParamRef<jclass>&) {
- GetFormDatabaseService()->ClearFormData();
-}
-
-bool RegisterAwFormDatabase(JNIEnv* env) {
- return RegisterNativesImpl(env);
-}
-
-} // namespace android_webview

Powered by Google App Engine
This is Rietveld 408576698