Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6451)

Unified Diff: components/sync_sessions/revisit/current_tab_matcher_unittest.cc

Issue 2389063002: [Sync] Fixing easy lint violations. (Closed)
Patch Set: Updated for Max's comments. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/sync_sessions/revisit/current_tab_matcher_unittest.cc
diff --git a/components/sync_sessions/revisit/current_tab_matcher_unittest.cc b/components/sync_sessions/revisit/current_tab_matcher_unittest.cc
index ce3691fa7f312f64fe13537bd6a357e899680166..4add6b797e057f6538838edd752c6825c105e664 100644
--- a/components/sync_sessions/revisit/current_tab_matcher_unittest.cc
+++ b/components/sync_sessions/revisit/current_tab_matcher_unittest.cc
@@ -21,8 +21,8 @@ namespace sync_sessions {
namespace {
-static const std::string kExampleUrl = "http://www.example.com";
-static const std::string kDifferentUrl = "http://www.different.com";
+const char kExampleUrl[] = "http://www.example.com";
+const char kDifferentUrl[] = "http://www.different.com";
sessions::SerializedNavigationEntry Entry(const std::string& url) {
return sessions::SerializedNavigationEntryTestHelper::CreateNavigation(url,

Powered by Google App Engine
This is Rietveld 408576698