| Index: chrome/browser/dom_ui/new_tab_page_sync_handler.cc
|
| diff --git a/chrome/browser/dom_ui/new_tab_page_sync_handler.cc b/chrome/browser/dom_ui/new_tab_page_sync_handler.cc
|
| index 53c008e537b9297c7afe5885b9d93756c8e01d27..ec74f3ce594b7d213c7e3f8d0b49825dea9f1b85 100644
|
| --- a/chrome/browser/dom_ui/new_tab_page_sync_handler.cc
|
| +++ b/chrome/browser/dom_ui/new_tab_page_sync_handler.cc
|
| @@ -60,7 +60,7 @@ bool IsGoogleGAIACookieInstalled() {
|
| options.set_include_httponly(); // The SID cookie might be httponly.
|
| std::string cookies = store->GetCookiesWithOptions(url, options);
|
| std::vector<std::string> cookie_list;
|
| - SplitString(cookies, ';', &cookie_list);
|
| + base::SplitString(cookies, ';', &cookie_list);
|
| for (std::vector<std::string>::iterator current = cookie_list.begin();
|
| current != cookie_list.end();
|
| ++current) {
|
|
|