Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(241)

Side by Side Diff: chrome/common/chrome_constants.h

Issue 5968008: Update file version info/memory details/process utils to use string16.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/shell_integration_unittest.cc ('k') | chrome/common/chrome_constants.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 // A handful of resource-like constants related to the Chrome application. 5 // A handful of resource-like constants related to the Chrome application.
6 6
7 #ifndef CHROME_COMMON_CHROME_CONSTANTS_H_ 7 #ifndef CHROME_COMMON_CHROME_CONSTANTS_H_
8 #define CHROME_COMMON_CHROME_CONSTANTS_H_ 8 #define CHROME_COMMON_CHROME_CONSTANTS_H_
9 #pragma once 9 #pragma once
10 10
11 #include "base/file_path.h" 11 #include "base/file_path.h"
12 12
13 namespace chrome { 13 namespace chrome {
14 14
15 extern const char kChromeVersion[]; 15 extern const char kChromeVersion[];
16 16
17 extern const char kChromeVersionEnvVar[]; 17 extern const char kChromeVersionEnvVar[];
18 18
19 extern const wchar_t kBrowserProcessExecutableName[]; 19 extern const FilePath::CharType kBrowserProcessExecutableName[];
20 extern const wchar_t kHelperProcessExecutableName[]; 20 extern const FilePath::CharType kHelperProcessExecutableName[];
21 extern const wchar_t kBrowserProcessExecutablePath[]; 21 extern const FilePath::CharType kBrowserProcessExecutablePath[];
22 extern const FilePath::CharType kHelperProcessExecutablePath[]; 22 extern const FilePath::CharType kHelperProcessExecutablePath[];
23 #if defined(OS_MACOSX) 23 #if defined(OS_MACOSX)
24 extern const FilePath::CharType kFrameworkName[]; 24 extern const FilePath::CharType kFrameworkName[];
25 #endif 25 #endif
26 extern const wchar_t kBrowserAppName[]; 26 extern const wchar_t kBrowserAppName[];
27 #if defined(OS_WIN) 27 #if defined(OS_WIN)
28 extern const wchar_t kStatusTrayWindowClass[]; 28 extern const wchar_t kStatusTrayWindowClass[];
29 #endif // defined(OS_WIN) 29 #endif // defined(OS_WIN)
30 extern const wchar_t kMessageWindowClass[]; 30 extern const wchar_t kMessageWindowClass[];
31 extern const wchar_t kCrashReportLog[]; 31 extern const wchar_t kCrashReportLog[];
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 // The maximum number of session history entries per tab. 94 // The maximum number of session history entries per tab.
95 extern const int kMaxSessionHistoryEntries; 95 extern const int kMaxSessionHistoryEntries;
96 96
97 // The language code used when the language of a page could not be detected. 97 // The language code used when the language of a page could not be detected.
98 // (Matches what the CLD -Compact Language Detection- library reports.) 98 // (Matches what the CLD -Compact Language Detection- library reports.)
99 extern const char* const kUnknownLanguageCode; 99 extern const char* const kUnknownLanguageCode;
100 100
101 } // namespace chrome 101 } // namespace chrome
102 102
103 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ 103 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_
OLDNEW
« no previous file with comments | « chrome/browser/shell_integration_unittest.cc ('k') | chrome/common/chrome_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698