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

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

Issue 7185023: Support Chromium-branded builds and cleanup reference build usage. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fixed inherited method calls and updated two tests. Created 9 years, 6 months 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 | « no previous file | chrome/common/chrome_constants.cc » ('j') | chrome/test/chrome_process_util.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 // 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 FilePath::CharType kBrowserProcessExecutableName[]; 19 extern const FilePath::CharType kBrowserProcessExecutableName[];
20 extern const FilePath::CharType kHelperProcessExecutableName[]; 20 extern const FilePath::CharType kHelperProcessExecutableName[];
21 extern const FilePath::CharType kBrowserProcessExecutablePath[]; 21 extern const FilePath::CharType kBrowserProcessExecutablePath[];
22 extern const FilePath::CharType kHelperProcessExecutablePath[]; 22 extern const FilePath::CharType kHelperProcessExecutablePath[];
23 extern const FilePath::CharType kBrowserProcessExecutableNameChromium[];
24 extern const FilePath::CharType kHelperProcessExecutableNameChromium[];
25 extern const FilePath::CharType kBrowserProcessExecutablePathChromium[];
26 extern const FilePath::CharType kHelperProcessExecutablePathChromium[];
23 #if defined(OS_MACOSX) 27 #if defined(OS_MACOSX)
24 extern const FilePath::CharType kFrameworkName[]; 28 extern const FilePath::CharType kFrameworkName[];
25 #endif 29 #endif
26 extern const wchar_t kBrowserAppName[]; 30 extern const wchar_t kBrowserAppName[];
27 #if defined(OS_WIN) 31 #if defined(OS_WIN)
28 extern const wchar_t kStatusTrayWindowClass[]; 32 extern const wchar_t kStatusTrayWindowClass[];
29 #endif // defined(OS_WIN) 33 #endif // defined(OS_WIN)
30 extern const wchar_t kMessageWindowClass[]; 34 extern const wchar_t kMessageWindowClass[];
31 extern const wchar_t kCrashReportLog[]; 35 extern const wchar_t kCrashReportLog[];
32 extern const wchar_t kTestingInterfaceDLL[]; 36 extern const wchar_t kTestingInterfaceDLL[];
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 // dismissed, display an option to suppress future message boxes from this 96 // dismissed, display an option to suppress future message boxes from this
93 // contents. 97 // contents.
94 extern const int kJavascriptMessageExpectedDelay; 98 extern const int kJavascriptMessageExpectedDelay;
95 99
96 // Are touch icons enabled? False by default. 100 // Are touch icons enabled? False by default.
97 extern const bool kEnableTouchIcon; 101 extern const bool kEnableTouchIcon;
98 102
99 } // namespace chrome 103 } // namespace chrome
100 104
101 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ 105 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/common/chrome_constants.cc » ('j') | chrome/test/chrome_process_util.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698