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

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: Rebased 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 808b488c9cea8e153e6d5aa998f978025cdbf280..b85d47b754f212f4b0f165a1dd855fc875fd6eae 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"
David Trainor- moved to gerrit 2013/02/27 07:49:28 I think this should go back up top since it is the
apiccion 2013/02/28 01:31:04 Done.
#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/search_engines/template_url_service_android.h"
@@ -58,6 +59,7 @@ static base::android::RegistrationMethod kChromeRegisteredMethods[] = {
{ "TemplateUrlServiceAndroid", TemplateUrlServiceAndroid::Register },
{ "WebsiteSettingsPopupAndroid",
WebsiteSettingsPopupAndroid::RegisterWebsiteSettingsPopupAndroid },
+ { "RegisterAuxiliaryProfileLoader", RegisterAuxiliaryProfileLoader }
};
bool RegisterJni(JNIEnv* env) {

Powered by Google App Engine
This is Rietveld 408576698