diff options
author | brettw <brettw@chromium.org> | 2015-06-24 13:54:45 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-06-24 20:55:38 +0000 |
commit | e6dae46fc681a8ad62f6937a6ac1cab3d51938a9 (patch) | |
tree | 2f75f6b3af2a17c8b1512b6881b00a8c9595ac96 /ui/gfx/text_elider_unittest.cc | |
parent | 2ef675dbcd5943aad03184b67696330cc910568d (diff) | |
download | chromium_src-e6dae46fc681a8ad62f6937a6ac1cab3d51938a9.zip chromium_src-e6dae46fc681a8ad62f6937a6ac1cab3d51938a9.tar.gz chromium_src-e6dae46fc681a8ad62f6937a6ac1cab3d51938a9.tar.bz2 |
Add more string_util functions to base namespace.
Moves ReplaceFirstSubstringAfterOffset. It also changes the find/replace arguments to be string pieces (normally these are constants).
TBR=gauravsh@chromium.org for chromeos/network
Review URL: https://codereview.chromium.org/1200393002
Cr-Commit-Position: refs/heads/master@{#335999}
Diffstat (limited to 'ui/gfx/text_elider_unittest.cc')
-rw-r--r-- | ui/gfx/text_elider_unittest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/gfx/text_elider_unittest.cc b/ui/gfx/text_elider_unittest.cc index 8122c42..5eeea5c 100644 --- a/ui/gfx/text_elider_unittest.cc +++ b/ui/gfx/text_elider_unittest.cc @@ -783,7 +783,7 @@ TEST(TextEliderTest, MAYBE_ElideRectangleTextLongWords) { cases[i].wrap_behavior, &lines)); std::string expected_output(cases[i].output); - ReplaceSubstringsAfterOffset(&expected_output, 0, "...", kEllipsis); + base::ReplaceSubstringsAfterOffset(&expected_output, 0, "...", kEllipsis); const std::string result = UTF16ToUTF8(JoinString(lines, '|')); EXPECT_EQ(expected_output, result) << "Case " << i << " failed!"; } |