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

Side by Side Diff: chrome/browser/ui/webui/bidi_checker_web_ui_test.cc

Issue 7892048: Autofill: Remove fax number completely. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comment fix. Created 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/webui/bidi_checker_web_ui_test.h" 5 #include "chrome/browser/ui/webui/bidi_checker_web_ui_test.h"
6 6
7 #include "base/base_paths.h" 7 #include "base/base_paths.h"
8 #include "base/i18n/rtl.h" 8 #include "base/i18n/rtl.h"
9 #include "base/path_service.h" 9 #include "base/path_service.h"
10 #include "base/utf_string_conversions.h" 10 #include "base/utf_string_conversions.h"
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 "\xD7\x91", 194 "\xD7\x91",
195 "\xD7\x9B\xD7\x94\xD7\x9F", 195 "\xD7\x9B\xD7\x94\xD7\x9F",
196 "moshe.b.cohen@biditest.com", 196 "moshe.b.cohen@biditest.com",
197 "\xD7\x91\xD7\x93\xD7\x99\xD7\xA7\xD7\x94\x20\xD7\x91\xD7\xA2\xD7\x9E", 197 "\xD7\x91\xD7\x93\xD7\x99\xD7\xA7\xD7\x94\x20\xD7\x91\xD7\xA2\xD7\x9E",
198 "\xD7\x93\xD7\xA8\xD7\x9A\x20\xD7\x9E\xD7\xA0\xD7\x97\xD7\x9D\x20\xD7\x91\ xD7\x92\xD7\x99\xD7\x9F\x20\x32\x33", 198 "\xD7\x93\xD7\xA8\xD7\x9A\x20\xD7\x9E\xD7\xA0\xD7\x97\xD7\x9D\x20\xD7\x91\ xD7\x92\xD7\x99\xD7\x9F\x20\x32\x33",
199 "\xD7\xA7\xD7\x95\xD7\x9E\xD7\x94\x20\x32\x36", 199 "\xD7\xA7\xD7\x95\xD7\x9E\xD7\x94\x20\x32\x36",
200 "\xD7\xAA\xD7\x9C\x20\xD7\x90\xD7\x91\xD7\x99\xD7\x91", 200 "\xD7\xAA\xD7\x9C\x20\xD7\x90\xD7\x91\xD7\x99\xD7\x91",
201 "", 201 "",
202 "66183", 202 "66183",
203 "\xD7\x99\xD7\xA9\xD7\xA8\xD7\x90\xD7\x9C", 203 "\xD7\x99\xD7\xA9\xD7\xA8\xD7\x90\xD7\x9C",
204 "0000",
205 "0000"); 204 "0000");
206 205
207 PersonalDataManager* personal_data_manager = 206 PersonalDataManager* personal_data_manager =
208 browser()->profile()->GetPersonalDataManager(); 207 browser()->profile()->GetPersonalDataManager();
209 ASSERT_TRUE(personal_data_manager); 208 ASSERT_TRUE(personal_data_manager);
210 209
211 personal_data_manager->AddProfile(profile); 210 personal_data_manager->AddProfile(profile);
212 211
213 RunBidiCheckerOnPage(url.c_str(), false); 212 RunBidiCheckerOnPage(url.c_str(), false);
214 } 213 }
(...skipping 11 matching lines...) Expand all
226 "C.", 225 "C.",
227 "Waddams", 226 "Waddams",
228 "red.swingline@initech.com", 227 "red.swingline@initech.com",
229 "Initech", 228 "Initech",
230 "4120 Freidrich Lane", 229 "4120 Freidrich Lane",
231 "Basement", 230 "Basement",
232 "Austin", 231 "Austin",
233 "Texas", 232 "Texas",
234 "78744", 233 "78744",
235 "United States", 234 "United States",
236 "5125551234", 235 "5125551234");
237 "5125550000");
238 236
239 PersonalDataManager* personal_data_manager = 237 PersonalDataManager* personal_data_manager =
240 browser()->profile()->GetPersonalDataManager(); 238 browser()->profile()->GetPersonalDataManager();
241 ASSERT_TRUE(personal_data_manager); 239 ASSERT_TRUE(personal_data_manager);
242 240
243 personal_data_manager->AddProfile(profile); 241 personal_data_manager->AddProfile(profile);
244 242
245 WebUIBidiCheckerBrowserTest::RunBidiCheckerOnPage(url.c_str(), true); 243 WebUIBidiCheckerBrowserTest::RunBidiCheckerOnPage(url.c_str(), true);
246 } 244 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698