| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include <stdlib.h> | 5 #include <stdlib.h> |
| 6 | 6 |
| 7 #include "chrome/common/url_constants.h" | 7 #include "chrome/common/url_constants.h" |
| 8 | 8 |
| 9 namespace chrome { | 9 namespace chrome { |
| 10 | 10 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 const char kChromeUIInspectorHost[] = "inspector"; | 66 const char kChromeUIInspectorHost[] = "inspector"; |
| 67 const char kChromeUINewTabHost[] = "newtab"; | 67 const char kChromeUINewTabHost[] = "newtab"; |
| 68 const char kChromeUIThumbnailPath[] = "thumb"; | 68 const char kChromeUIThumbnailPath[] = "thumb"; |
| 69 const char kChromeUIThemePath[] = "theme"; | 69 const char kChromeUIThemePath[] = "theme"; |
| 70 | 70 |
| 71 const char kSyncResourcesHost[] = "syncresources"; | 71 const char kSyncResourcesHost[] = "syncresources"; |
| 72 const char kSyncGaiaLoginPath[] = "gaialogin"; | 72 const char kSyncGaiaLoginPath[] = "gaialogin"; |
| 73 const char kSyncMergeAndSyncPath[] = "mergeandsync"; | 73 const char kSyncMergeAndSyncPath[] = "mergeandsync"; |
| 74 const char kSyncThrobberPath[] = "throbber.png"; | 74 const char kSyncThrobberPath[] = "throbber.png"; |
| 75 const char kSyncSetupFlowPath[] = "setup"; | 75 const char kSyncSetupFlowPath[] = "setup"; |
| 76 const char kSyncSetupDonePath[] = "setupdone"; |
| 76 | 77 |
| 77 const char kNetworkViewInternalsURL[] = "chrome://net-internals/"; | 78 const char kNetworkViewInternalsURL[] = "chrome://net-internals/"; |
| 78 const char kNetworkViewCacheURL[] = "chrome://net-internals/view-cache"; | 79 const char kNetworkViewCacheURL[] = "chrome://net-internals/view-cache"; |
| 79 | 80 |
| 80 } // namespace chrome | 81 } // namespace chrome |
| OLD | NEW |