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

Side by Side Diff: chrome/browser/ui/find_bar/find_backend_unittest.cc

Issue 16629005: Use a direct include of strings headers in chrome/browser/ui/b*-p*/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "base/string16.h" 5 #include "base/strings/string16.h"
6 #include "base/string_util.h" 6 #include "base/strings/string_util.h"
7 #include "base/strings/utf_string_conversions.h" 7 #include "base/strings/utf_string_conversions.h"
8 #include "chrome/browser/ui/find_bar/find_bar_state.h" 8 #include "chrome/browser/ui/find_bar/find_bar_state.h"
9 #include "chrome/browser/ui/find_bar/find_bar_state_factory.h" 9 #include "chrome/browser/ui/find_bar/find_bar_state_factory.h"
10 #include "chrome/browser/ui/find_bar/find_tab_helper.h" 10 #include "chrome/browser/ui/find_bar/find_tab_helper.h"
11 #include "chrome/common/url_constants.h" 11 #include "chrome/common/url_constants.h"
12 #include "chrome/test/base/chrome_render_view_host_test_harness.h" 12 #include "chrome/test/base/chrome_render_view_host_test_harness.h"
13 #include "chrome/test/base/testing_profile.h" 13 #include "chrome/test/base/testing_profile.h"
14 #include "content/public/browser/web_contents.h" 14 #include "content/public/browser/web_contents.h"
15 #include "content/public/test/web_contents_tester.h" 15 #include "content/public/test/web_contents_tester.h"
16 16
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 // find_tab_helper (as indicated by the last two params). 86 // find_tab_helper (as indicated by the last two params).
87 find_tab_helper->StartFinding(search_term3, true, false); 87 find_tab_helper->StartFinding(search_term3, true, false);
88 88
89 // Once more, pre-populate string should always match between the two, but 89 // Once more, pre-populate string should always match between the two, but
90 // find_text should not. 90 // find_text should not.
91 EXPECT_EQ(search_term3, FindPrepopulateText(web_contents())); 91 EXPECT_EQ(search_term3, FindPrepopulateText(web_contents()));
92 EXPECT_EQ(search_term3, find_tab_helper->find_text()); 92 EXPECT_EQ(search_term3, find_tab_helper->find_text());
93 EXPECT_EQ(search_term3, FindPrepopulateText(contents2.get())); 93 EXPECT_EQ(search_term3, FindPrepopulateText(contents2.get()));
94 EXPECT_EQ(search_term2, find_tab_helper2->find_text()); 94 EXPECT_EQ(search_term2, find_tab_helper2->find_text());
95 } 95 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/extensions/app_metro_infobar_delegate_win.h ('k') | chrome/browser/ui/find_bar/find_bar.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698