diff options
Diffstat (limited to 'chrome/browser/dom_ui')
-rw-r--r-- | chrome/browser/dom_ui/history_ui.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/dom_ui/history_ui.cc b/chrome/browser/dom_ui/history_ui.cc index 370417d..53d66c2 100644 --- a/chrome/browser/dom_ui/history_ui.cc +++ b/chrome/browser/dom_ui/history_ui.cc @@ -26,7 +26,7 @@ using base::Time; // HistoryUI is accessible from chrome://history, and the raw HTML is // accessed from chrome://history. -static const std::string kHistoryHost = "history"; +static const char kHistoryHost[] = "history"; // Maximum number of search results to return in a given search. We should // eventually remove this. @@ -300,4 +300,4 @@ GURL HistoryUI::GetBaseURL() { url += "://"; url += kHistoryHost; return GURL(url); -}
\ No newline at end of file +} |