| Index: chrome/browser/web_resource/promo_resource_service_unittest.cc
|
| diff --git a/chrome/browser/web_resource/promo_resource_service_unittest.cc b/chrome/browser/web_resource/promo_resource_service_unittest.cc
|
| index 97cac317af8b2938ad8afb694b2476c181c99112..1a9acc15d7bb87b8779d35a84ac47f2e556f6f7d 100644
|
| --- a/chrome/browser/web_resource/promo_resource_service_unittest.cc
|
| +++ b/chrome/browser/web_resource/promo_resource_service_unittest.cc
|
| @@ -24,6 +24,7 @@
|
| #include "chrome/test/base/testing_browser_process.h"
|
| #include "content/public/browser/notification_registrar.h"
|
| #include "content/public/browser/notification_service.h"
|
| +#include "net/base/url_constants.h"
|
| #include "net/url_request/test_url_fetcher_factory.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| #include "third_party/icu/source/i18n/unicode/smpdtfmt.h"
|
| @@ -529,7 +530,7 @@ TEST_F(PromoResourceServiceTest, PromoServerURLTest) {
|
| GURL promo_server_url = NotificationPromo::PromoServerURL();
|
| EXPECT_FALSE(promo_server_url.is_empty());
|
| EXPECT_TRUE(promo_server_url.is_valid());
|
| - EXPECT_TRUE(promo_server_url.SchemeIs(content::kHttpsScheme));
|
| + EXPECT_TRUE(promo_server_url.SchemeIs(net::kHttpsScheme));
|
| // TODO(achuith): Test this better.
|
| }
|
|
|
|
|