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

Side by Side Diff: chrome/browser/password_manager/password_manager_test_base.cc

Issue 2319763003: [BuildFix] Remove unnecessary include (Closed)
Patch Set: Address comment Created 4 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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/password_manager/password_manager_test_base.h" 5 #include "chrome/browser/password_manager/password_manager_test_base.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "base/run_loop.h" 10 #include "base/run_loop.h"
11 #include "base/strings/stringprintf.h" 11 #include "base/strings/stringprintf.h"
12 #include "chrome/browser/password_manager/chrome_password_manager_client.h"
13 #include "chrome/browser/password_manager/password_store_factory.h" 12 #include "chrome/browser/password_manager/password_store_factory.h"
14 #include "chrome/browser/profiles/profile.h" 13 #include "chrome/browser/profiles/profile.h"
15 #include "chrome/browser/ui/browser.h" 14 #include "chrome/browser/ui/browser.h"
16 #include "chrome/browser/ui/passwords/manage_passwords_ui_controller.h" 15 #include "chrome/browser/ui/passwords/manage_passwords_ui_controller.h"
17 #include "chrome/browser/ui/tabs/tab_strip_model.h" 16 #include "chrome/browser/ui/tabs/tab_strip_model.h"
18 #include "chrome/test/base/ui_test_utils.h" 17 #include "chrome/test/base/ui_test_utils.h"
19 #include "components/autofill/core/browser/autofill_test_utils.h" 18 #include "components/autofill/core/browser/autofill_test_utils.h"
20 #include "components/password_manager/core/browser/password_manager_test_utils.h " 19 #include "components/password_manager/core/browser/password_manager_test_utils.h "
21 #include "components/password_manager/core/browser/test_password_store.h" 20 #include "components/password_manager/core/browser/test_password_store.h"
22 #include "components/password_manager/core/common/password_manager_features.h" 21 #include "components/password_manager/core/common/password_manager_features.h"
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 " var element = document.getElementById('%s');" 248 " var element = document.getElementById('%s');"
250 "window.domAutomationController.send(element && element.value == '%s');", 249 "window.domAutomationController.send(element && element.value == '%s');",
251 iframe_id.c_str(), iframe_id.c_str(), element_id.c_str(), 250 iframe_id.c_str(), iframe_id.c_str(), element_id.c_str(),
252 element_id.c_str(), expected_value.c_str()); 251 element_id.c_str(), expected_value.c_str());
253 bool return_value = false; 252 bool return_value = false;
254 ASSERT_TRUE(content::ExecuteScriptAndExtractBool( 253 ASSERT_TRUE(content::ExecuteScriptAndExtractBool(
255 RenderViewHost(), value_check_script, &return_value)); 254 RenderViewHost(), value_check_script, &return_value));
256 EXPECT_TRUE(return_value) << "element_id = " << element_id 255 EXPECT_TRUE(return_value) << "element_id = " << element_id
257 << ", expected_value = " << expected_value; 256 << ", expected_value = " << expected_value;
258 } 257 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698