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

Side by Side Diff: chrome/browser/ui/android/autofill/autofill_dialog_controller_android.cc

Issue 823133004: Cleanup: Update the path to gfx rect headers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rect_f.h Created 5 years, 11 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/android/autofill/autofill_dialog_controller_android. h" 5 #include "chrome/browser/ui/android/autofill/autofill_dialog_controller_android. h"
6 6
7 #include "base/android/jni_android.h" 7 #include "base/android/jni_android.h"
8 #include "base/android/jni_array.h" 8 #include "base/android/jni_array.h"
9 #include "base/android/jni_string.h" 9 #include "base/android/jni_string.h"
10 #include "base/android/scoped_java_ref.h" 10 #include "base/android/scoped_java_ref.h"
(...skipping 21 matching lines...) Expand all
32 #include "components/pref_registry/pref_registry_syncable.h" 32 #include "components/pref_registry/pref_registry_syncable.h"
33 #include "content/public/browser/navigation_controller.h" 33 #include "content/public/browser/navigation_controller.h"
34 #include "content/public/browser/navigation_details.h" 34 #include "content/public/browser/navigation_details.h"
35 #include "content/public/browser/navigation_entry.h" 35 #include "content/public/browser/navigation_entry.h"
36 #include "content/public/browser/web_contents.h" 36 #include "content/public/browser/web_contents.h"
37 #include "jni/AutofillDialogControllerAndroid_jni.h" 37 #include "jni/AutofillDialogControllerAndroid_jni.h"
38 #include "ui/base/android/window_android.h" 38 #include "ui/base/android/window_android.h"
39 #include "ui/base/models/combobox_model.h" 39 #include "ui/base/models/combobox_model.h"
40 #include "ui/base/models/menu_model.h" 40 #include "ui/base/models/menu_model.h"
41 #include "ui/gfx/android/java_bitmap.h" 41 #include "ui/gfx/android/java_bitmap.h"
42 #include "ui/gfx/rect.h" 42 #include "ui/gfx/geometry/rect.h"
43 #include "url/gurl.h" 43 #include "url/gurl.h"
44 44
45 namespace autofill { 45 namespace autofill {
46 46
47 namespace { 47 namespace {
48 48
49 using wallet::FullWallet; 49 using wallet::FullWallet;
50 50
51 // Keys in kAutofillDialogDefaults pref dictionary (do not change these values). 51 // Keys in kAutofillDialogDefaults pref dictionary (do not change these values).
52 const char kLastUsedAccountName[] = "last_used_account_name"; 52 const char kLastUsedAccountName[] = "last_used_account_name";
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after
529 529
530 void AutofillDialogControllerAndroid::LogOnCancelMetrics() { 530 void AutofillDialogControllerAndroid::LogOnCancelMetrics() {
531 AutofillMetrics::LogDialogUiDuration( 531 AutofillMetrics::LogDialogUiDuration(
532 base::Time::Now() - dialog_shown_timestamp_, 532 base::Time::Now() - dialog_shown_timestamp_,
533 AutofillMetrics::DIALOG_CANCELED); 533 AutofillMetrics::DIALOG_CANCELED);
534 534
535 AutofillMetrics::LogDialogUiEvent(AutofillMetrics::DIALOG_UI_CANCELED); 535 AutofillMetrics::LogDialogUiEvent(AutofillMetrics::DIALOG_UI_CANCELED);
536 } 536 }
537 537
538 } // namespace autofill 538 } // namespace autofill
OLDNEW
« no previous file with comments | « chrome/browser/thumbnails/thumbnailing_algorithm.h ('k') | chrome/browser/ui/android/autofill/autofill_popup_view_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698