| Index: app/text_elider.cc
|
| diff --git a/app/text_elider.cc b/app/text_elider.cc
|
| index 3fdb001f77e0b161a453ab192435102dfb54e40d..4f7ddfbdee1b86c125e2cc296c170498d93518f3 100644
|
| --- a/app/text_elider.cc
|
| +++ b/app/text_elider.cc
|
| @@ -123,7 +123,7 @@ std::wstring ElideUrl(const GURL& url,
|
| if (url.SchemeIsFile()) {
|
| // Split the path string using ":"
|
| std::vector<std::wstring> file_path_split;
|
| - SplitString(url_path, L':', &file_path_split);
|
| + base::SplitString(url_path, L':', &file_path_split);
|
| if (file_path_split.size() > 1) { // File is of type "file:///C:/.."
|
| url_host.clear();
|
| url_domain.clear();
|
| @@ -164,7 +164,7 @@ std::wstring ElideUrl(const GURL& url,
|
|
|
| // Parse url_path using '/'.
|
| std::vector<std::wstring> url_path_elements;
|
| - SplitString(url_path, L'/', &url_path_elements);
|
| + base::SplitString(url_path, L'/', &url_path_elements);
|
|
|
| // Get filename - note that for a path ending with /
|
| // such as www.google.com/intl/ads/, the file name is ads/.
|
|
|