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

Side by Side Diff: chrome/browser/autofill/autofill_interactive_uitest.cc

Issue 1396923003: Autofill: Replace "save credit card" infobar with a bubble (Views only). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: defined(TOOLKIT_VIEWS) -> defined(TOOLKIT_VIEWS) && !defined(OS_MACOSX). Created 5 years, 1 month 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 (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 <string> 5 #include <string>
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/files/file_util.h" 9 #include "base/files/file_util.h"
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "base/rand_util.h" 12 #include "base/rand_util.h"
13 #include "base/strings/string16.h" 13 #include "base/strings/string16.h"
14 #include "base/strings/string_number_conversions.h" 14 #include "base/strings/string_number_conversions.h"
15 #include "base/strings/string_split.h" 15 #include "base/strings/string_split.h"
16 #include "base/strings/utf_string_conversions.h" 16 #include "base/strings/utf_string_conversions.h"
17 #include "base/time/time.h" 17 #include "base/time/time.h"
18 #include "chrome/browser/autofill/autofill_uitest_util.h" 18 #include "chrome/browser/autofill/autofill_uitest_util.h"
19 #include "chrome/browser/chrome_notification_types.h" 19 #include "chrome/browser/chrome_notification_types.h"
20 #include "chrome/browser/infobars/infobar_service.h"
21 #include "chrome/browser/profiles/profile.h" 20 #include "chrome/browser/profiles/profile.h"
22 #include "chrome/browser/translate/chrome_translate_client.h" 21 #include "chrome/browser/translate/chrome_translate_client.h"
23 #include "chrome/browser/translate/translate_service.h" 22 #include "chrome/browser/translate/translate_service.h"
24 #include "chrome/browser/ui/browser_window.h" 23 #include "chrome/browser/ui/browser_window.h"
25 #include "chrome/browser/ui/tabs/tab_strip_model.h" 24 #include "chrome/browser/ui/tabs/tab_strip_model.h"
26 #include "chrome/browser/ui/translate/translate_bubble_test_utils.h" 25 #include "chrome/browser/ui/translate/translate_bubble_test_utils.h"
27 #include "chrome/common/chrome_switches.h" 26 #include "chrome/common/chrome_switches.h"
28 #include "chrome/test/base/in_process_browser_test.h" 27 #include "chrome/test/base/in_process_browser_test.h"
29 #include "chrome/test/base/interactive_test_utils.h" 28 #include "chrome/test/base/interactive_test_utils.h"
30 #include "chrome/test/base/test_switches.h" 29 #include "chrome/test/base/test_switches.h"
31 #include "chrome/test/base/ui_test_utils.h" 30 #include "chrome/test/base/ui_test_utils.h"
32 #include "components/autofill/content/browser/content_autofill_driver.h" 31 #include "components/autofill/content/browser/content_autofill_driver.h"
33 #include "components/autofill/content/browser/content_autofill_driver_factory.h" 32 #include "components/autofill/content/browser/content_autofill_driver_factory.h"
34 #include "components/autofill/core/browser/autofill_manager.h" 33 #include "components/autofill/core/browser/autofill_manager.h"
35 #include "components/autofill/core/browser/autofill_manager_test_delegate.h" 34 #include "components/autofill/core/browser/autofill_manager_test_delegate.h"
36 #include "components/autofill/core/browser/autofill_profile.h" 35 #include "components/autofill/core/browser/autofill_profile.h"
37 #include "components/autofill/core/browser/autofill_test_utils.h" 36 #include "components/autofill/core/browser/autofill_test_utils.h"
38 #include "components/autofill/core/browser/validation.h" 37 #include "components/autofill/core/browser/validation.h"
39 #include "components/infobars/core/infobar.h"
40 #include "components/translate/core/browser/translate_infobar_delegate.h"
41 #include "components/translate/core/browser/translate_manager.h" 38 #include "components/translate/core/browser/translate_manager.h"
42 #include "content/public/browser/navigation_controller.h" 39 #include "content/public/browser/navigation_controller.h"
43 #include "content/public/browser/notification_observer.h" 40 #include "content/public/browser/notification_observer.h"
44 #include "content/public/browser/notification_registrar.h" 41 #include "content/public/browser/notification_registrar.h"
45 #include "content/public/browser/notification_service.h" 42 #include "content/public/browser/notification_service.h"
46 #include "content/public/browser/render_view_host.h" 43 #include "content/public/browser/render_view_host.h"
47 #include "content/public/browser/render_widget_host.h" 44 #include "content/public/browser/render_widget_host.h"
48 #include "content/public/browser/web_contents.h" 45 #include "content/public/browser/web_contents.h"
49 #include "content/public/test/browser_test_utils.h" 46 #include "content/public/test/browser_test_utils.h"
50 #include "content/public/test/test_renderer_host.h" 47 #include "content/public/test/test_renderer_host.h"
(...skipping 1342 matching lines...) Expand 10 before | Expand all | Expand 10 after
1393 ASSERT_TRUE(content::ExecuteScript( 1390 ASSERT_TRUE(content::ExecuteScript(
1394 GetRenderViewHost(), 1391 GetRenderViewHost(),
1395 "document.querySelector('input').autocomplete = 'off';")); 1392 "document.querySelector('input').autocomplete = 'off';"));
1396 1393
1397 // Press the down arrow to select the suggestion and attempt to preview the 1394 // Press the down arrow to select the suggestion and attempt to preview the
1398 // autofilled form. 1395 // autofilled form.
1399 SendKeyToPopupAndWait(ui::VKEY_DOWN); 1396 SendKeyToPopupAndWait(ui::VKEY_DOWN);
1400 } 1397 }
1401 1398
1402 } // namespace autofill 1399 } // namespace autofill
OLDNEW
« no previous file with comments | « chrome/browser/autofill/autofill_browsertest.cc ('k') | chrome/browser/autofill/autofill_uitest_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698