| Index: chrome/browser/sync/chrome_sync_client_unittest.cc
|
| diff --git a/chrome/browser/sync/chrome_sync_client_unittest.cc b/chrome/browser/sync/chrome_sync_client_unittest.cc
|
| index f7f89c7400bd8017e7d6b8eabe41c4c79676e2d7..5f9b34e1a35f45632875300a5720c49c68d03417 100644
|
| --- a/chrome/browser/sync/chrome_sync_client_unittest.cc
|
| +++ b/chrome/browser/sync/chrome_sync_client_unittest.cc
|
| @@ -5,6 +5,7 @@
|
| #include "chrome/browser/sync/chrome_sync_client.h"
|
|
|
| #include <memory>
|
| +#include <string>
|
|
|
| #include "chrome/common/url_constants.h"
|
| #include "components/sync/driver/sync_api_component_factory.h"
|
| @@ -17,8 +18,8 @@ namespace browser_sync {
|
|
|
| namespace {
|
|
|
| -const std::string kValidUrl = "http://www.example.com";
|
| -const std::string kInvalidUrl = "invalid.url";
|
| +const char kValidUrl[] = "http://www.example.com";
|
| +const char kInvalidUrl[] = "invalid.url";
|
|
|
| class ChromeSyncClientTest : public testing::Test {
|
| public:
|
|
|