diff options
author | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-13 16:19:42 +0000 |
---|---|---|
committer | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-13 16:19:42 +0000 |
commit | 6a144651508a2a6ecc9dcc4af8cc7c38370954ed (patch) | |
tree | f69959ea446749092218daf3174a9b1bde9c1248 /chrome/browser/dom_ui | |
parent | dedc928a0da92d3fdccf986a17f46f6798c9beaa (diff) | |
download | chromium_src-6a144651508a2a6ecc9dcc4af8cc7c38370954ed.zip chromium_src-6a144651508a2a6ecc9dcc4af8cc7c38370954ed.tar.gz chromium_src-6a144651508a2a6ecc9dcc4af8cc7c38370954ed.tar.bz2 |
Remove a std::string static constructor in the new history dom ui.
Review URL: http://codereview.chromium.org/17361
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7932 0039d316-1c4b-4281-b951-d872f2087c98
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 +} |