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

Unified Diff: chrome/browser/chromeos/offline/offline_load_page_unittest.cc

Issue 635573005: Cleanup: Better constify some strings in chrome/browser/{chromeos,extensions}. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase, nit Created 6 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: chrome/browser/chromeos/offline/offline_load_page_unittest.cc
diff --git a/chrome/browser/chromeos/offline/offline_load_page_unittest.cc b/chrome/browser/chromeos/offline/offline_load_page_unittest.cc
index f1e07313fb3bf77a26120e65f7e01e79e8dfcaea..545c87e6c01e431b8129953b3c900b4976c8ea28 100644
--- a/chrome/browser/chromeos/offline/offline_load_page_unittest.cc
+++ b/chrome/browser/chromeos/offline/offline_load_page_unittest.cc
@@ -13,8 +13,8 @@ using content::InterstitialPage;
using content::WebContents;
using content::WebContentsTester;
-static const char* kURL1 = "http://www.google.com/";
-static const char* kURL2 = "http://www.gmail.com/";
+static const char kURL1[] = "http://www.google.com/";
+static const char kURL2[] = "http://www.gmail.com/";
namespace chromeos {

Powered by Google App Engine
This is Rietveld 408576698