Chromium Code Reviews| Index: chrome/common/url_constants.cc |
| diff --git a/chrome/common/url_constants.cc b/chrome/common/url_constants.cc |
| index 33fcb990b2ecd42303f70bd05f150da848f1a22f..50db48ba9a3a857497d04862e8c36b496f1bb681 100644 |
| --- a/chrome/common/url_constants.cc |
| +++ b/chrome/common/url_constants.cc |
| @@ -2,9 +2,10 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| +#include "chrome/common/url_constants.h" |
|
tfarina
2011/05/19 23:19:10
thanks.
msw
2011/05/19 23:55:46
:)
|
| + |
| #include <stdlib.h> |
|
tfarina
2011/05/19 23:19:10
Is this include really needed?
msw
2011/05/19 23:55:46
Apparently not; removed!
|
| -#include "chrome/common/url_constants.h" |
| #include "googleurl/src/url_util.h" |
| namespace chrome { |
| @@ -51,10 +52,9 @@ const char kAboutVersionURL[] = "about:version"; |
| // to be used for testing. |
| const char kAboutBrowserCrash[] = "about:inducebrowsercrashforrealz"; |
| -const char kChromeUIAboutAboutURL[] = "chrome://about/about"; |
| -const char kChromeUIAboutCreditsURL[] = "chrome://about/credits"; |
| -const char kChromeUIAboutURL[] = "chrome://settings/about"; |
| -const char kChromeUIAppLauncherURL[] = "chrome://newtab/#mode=app-launcher"; |
| +const char kChromeUIAboutAboutURL[] = "chrome://about/about/"; |
| +const char kChromeUIAboutCreditsURL[] = "chrome://about/credits/"; |
| +const char kChromeUIAboutURL[] = "chrome://settings/about/"; |
| const char kChromeUIBookmarksURL[] = "chrome://bookmarks/"; |
| const char kChromeUIBugReportURL[] = "chrome://bugreport/"; |
| const char kChromeUIConflictsURL[] = "chrome://conflicts/"; |
| @@ -68,16 +68,16 @@ const char kChromeUIFaviconURL[] = "chrome://favicon/"; |
| const char kChromeUIFlagsURL[] = "chrome://flags/"; |
| const char kChromeUIHistory2URL[] = "chrome://history2/"; |
| const char kChromeUIHistoryURL[] = "chrome://history/"; |
| -const char kChromeUIIPCURL[] = "chrome://about/ipc"; |
| +const char kChromeUIIPCURL[] = "chrome://about/ipc/"; |
| const char kChromeUIKeyboardURL[] = "chrome://keyboard/"; |
| -const char kChromeUINewTabURL[] = "chrome://newtab"; |
| +const char kChromeUINewTabURL[] = "chrome://newtab/"; |
| const char kChromeUIPluginsURL[] = "chrome://plugins/"; |
| const char kChromeUIPrintURL[] = "chrome://print/"; |
| const char kChromeUISettingsURL[] = "chrome://settings/"; |
| const char kChromeUITextfieldsURL[] = "chrome://textfields/"; |
| #if defined(OS_CHROMEOS) |
| -const char kChromeUIAboutOSCreditsURL[] = "chrome://about/os-credits"; |
| +const char kChromeUIAboutOSCreditsURL[] = "chrome://about/os-credits/"; |
| const char kChromeUIActivationMessage[] = "chrome://activationmessage/"; |
| const char kChromeUIActiveDownloadsURL[] = "chrome://active-downloads/"; |
| const char kChromeUIChooseMobileNetworkURL[] = |
| @@ -173,18 +173,17 @@ const char kSyncViewInternalsURL[] = "chrome://sync-internals/"; |
| const char kGpuInternalsURL[] = "chrome://gpu-internals/"; |
| // Option sub pages. |
| -const char kAdvancedOptionsSubPage[] = "advanced"; |
| +const char kAdvancedOptionsSubPage[] = "advanced"; |
| const char kAutofillSubPage[] = "autofill"; |
| -const char kBrowserOptionsSubPage[] = "browser"; |
| +const char kBrowserOptionsSubPage[] = "browser"; |
| const char kClearBrowserDataSubPage[] = "clearBrowserData"; |
| const char kContentSettingsSubPage[] = "content"; |
| const char kContentSettingsExceptionsSubPage[] = "contentExceptions"; |
| -const char kDefaultOptionsSubPage[] = ""; |
| const char kImportDataSubPage[] = "importData"; |
| const char kInstantConfirmPage[] = "instantConfirm"; |
| const char kLanguageOptionsSubPage[] = "languages"; |
| -const char kPersonalOptionsSubPage[] = "personal"; |
| -const char kPasswordManagerSubPage[] = "passwords"; |
| +const char kPersonalOptionsSubPage[] = "personal"; |
| +const char kPasswordManagerSubPage[] = "passwords"; |
| const char kSearchEnginesSubPage[] = "searchEngines"; |
| const char kSyncSetupSubPage[] = "syncSetup"; |
| #if defined(OS_CHROMEOS) |