| Index: chrome/browser/safe_browsing/safe_browsing_test.cc
|
| diff --git a/chrome/browser/safe_browsing/safe_browsing_test.cc b/chrome/browser/safe_browsing/safe_browsing_test.cc
|
| index 0f3b95e04810f8b0e8270b130956d37ea79c3056..9caa96a122cb6262f1dbfba3a87111166e9d6b95 100644
|
| --- a/chrome/browser/safe_browsing/safe_browsing_test.cc
|
| +++ b/chrome/browser/safe_browsing/safe_browsing_test.cc
|
| @@ -51,6 +51,7 @@
|
| #include "net/url_request/url_fetcher_delegate.h"
|
| #include "net/url_request/url_request_status.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| +#include "url/url_constants.h"
|
|
|
| using content::BrowserThread;
|
|
|
| @@ -91,8 +92,7 @@ bool ParsePhishingUrls(const std::string& data,
|
| << urls[i];
|
| return false;
|
| }
|
| - phishing_url.url = std::string(content::kHttpScheme) +
|
| - "://" + record_parts[0];
|
| + phishing_url.url = std::string(url::kHttpScheme) + "://" + record_parts[0];
|
| phishing_url.list_name = record_parts[1];
|
| if (record_parts[2] == "yes") {
|
| phishing_url.is_phishing = true;
|
|
|