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

Unified Diff: chrome/browser/android/chrome_jni_registrar.cc

Issue 12282004: Added personal_data_manager android implementation for auto-populating auto-fill on android builds … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Android Autofill Populator Created 7 years, 10 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: chrome/browser/android/chrome_jni_registrar.cc
diff --git a/chrome/browser/android/chrome_jni_registrar.cc b/chrome/browser/android/chrome_jni_registrar.cc
index ea74888c58f1acf2cf753449b0596dafaeb75331..c6fd303bdfecc90546d0ab95ce1111dc9ef159db 100644
--- a/chrome/browser/android/chrome_jni_registrar.cc
+++ b/chrome/browser/android/chrome_jni_registrar.cc
@@ -2,16 +2,17 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "chrome/browser/android/chrome_jni_registrar.h"
-
#include "base/android/jni_android.h"
#include "base/android/jni_registrar.h"
+
+#include "chrome/browser/android/chrome_jni_registrar.h"
aurimas (slooooooooow) 2013/02/27 01:56:00 This should be moved back up where it was.
#include "chrome/browser/android/chrome_web_contents_delegate_android.h"
#include "chrome/browser/android/content_view_util.h"
#include "chrome/browser/android/dev_tools_server.h"
#include "chrome/browser/android/intent_helper.h"
#include "chrome/browser/android/process_utils.h"
#include "chrome/browser/android/provider/chrome_browser_provider.h"
+#include "chrome/browser/autofill/auxiliary_profile_loader_android.h"
#include "chrome/browser/history/android/sqlite_cursor.h"
#include "chrome/browser/lifetime/application_lifetime_android.h"
#include "chrome/browser/ui/android/autofill/autofill_popup_view_android.h"
@@ -53,6 +54,7 @@ static base::android::RegistrationMethod kChromeRegisteredMethods[] = {
{ "SqliteCursor", SQLiteCursor::RegisterSqliteCursor },
{ "WebsiteSettingsPopupAndroid",
WebsiteSettingsPopupAndroid::RegisterWebsiteSettingsPopupAndroid },
+ { "RegisterAuxiliaryProfileLoader", RegisterAuxiliaryProfileLoader }
};
bool RegisterJni(JNIEnv* env) {

Powered by Google App Engine
This is Rietveld 408576698