OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "chrome/common/chrome_constants.h" | 5 #include "chrome/common/chrome_constants.h" |
6 | 6 |
7 #include "base/file_path.h" | 7 #include "base/file_path.h" |
8 | 8 |
9 #define FPL FILE_PATH_LITERAL | 9 #define FPL FILE_PATH_LITERAL |
10 | 10 |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 const char kStatsFilename[] = "ChromiumStats2"; | 62 const char kStatsFilename[] = "ChromiumStats2"; |
63 #endif | 63 #endif |
64 | 64 |
65 #if defined(OS_WIN) | 65 #if defined(OS_WIN) |
66 const wchar_t kStatusTrayWindowClass[] = L"Chrome_StatusTrayWindow"; | 66 const wchar_t kStatusTrayWindowClass[] = L"Chrome_StatusTrayWindow"; |
67 #endif // defined(OS_WIN) | 67 #endif // defined(OS_WIN) |
68 | 68 |
69 const wchar_t kMessageWindowClass[] = L"Chrome_MessageWindow"; | 69 const wchar_t kMessageWindowClass[] = L"Chrome_MessageWindow"; |
70 const wchar_t kCrashReportLog[] = L"Reported Crashes.txt"; | 70 const wchar_t kCrashReportLog[] = L"Reported Crashes.txt"; |
71 const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll"; | 71 const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll"; |
72 const wchar_t kNotSignedInProfile[] = L"Default"; | 72 const char kNotSignedInProfile[] = "Default"; |
73 const wchar_t kNotSignedInID[] = L"not-signed-in"; | |
74 const wchar_t kBrowserResourcesDll[] = L"chrome.dll"; | 73 const wchar_t kBrowserResourcesDll[] = L"chrome.dll"; |
75 const FilePath::CharType kExtensionFileExtension[] = FPL(".crx"); | 74 const FilePath::CharType kExtensionFileExtension[] = FPL(".crx"); |
76 const FilePath::CharType kExtensionKeyFileExtension[] = FPL(".pem"); | 75 const FilePath::CharType kExtensionKeyFileExtension[] = FPL(".pem"); |
77 | 76 |
78 // filenames | 77 // filenames |
79 const FilePath::CharType kArchivedHistoryFilename[] = FPL("Archived History"); | 78 const FilePath::CharType kArchivedHistoryFilename[] = FPL("Archived History"); |
80 const FilePath::CharType kCacheDirname[] = FPL("Cache"); | 79 const FilePath::CharType kCacheDirname[] = FPL("Cache"); |
81 const FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); | 80 const FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); |
82 const FilePath::CharType kOffTheRecordMediaCacheDirname[] = | 81 const FilePath::CharType kOffTheRecordMediaCacheDirname[] = |
83 FPL("Incognito Media Cache"); | 82 FPL("Incognito Media Cache"); |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 | 131 |
133 const int kMaxSessionHistoryEntries = 50; | 132 const int kMaxSessionHistoryEntries = 50; |
134 | 133 |
135 const char* const kUnknownLanguageCode = "und"; | 134 const char* const kUnknownLanguageCode = "und"; |
136 | 135 |
137 const int kJavascriptMessageExpectedDelay = 1000; | 136 const int kJavascriptMessageExpectedDelay = 1000; |
138 | 137 |
139 } // namespace chrome | 138 } // namespace chrome |
140 | 139 |
141 #undef FPL | 140 #undef FPL |
OLD | NEW |