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

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

Issue 717223002: Browser watcher end-end-to-end . (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git/+/lkgr
Patch Set: Address Erik's comments. Created 6 years, 1 month 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
« no previous file with comments | « chrome/common/chrome_constants.h ('k') | components/browser_watcher.gypi » ('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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/files/file_path.h" 7 #include "base/files/file_path.h"
8 8
9 #define FPL FILE_PATH_LITERAL 9 #define FPL FILE_PATH_LITERAL
10 10
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 const wchar_t kMetroNavigationAndSearchMessage[] = 231 const wchar_t kMetroNavigationAndSearchMessage[] =
232 L"CHROME_METRO_NAV_SEARCH_REQUEST"; 232 L"CHROME_METRO_NAV_SEARCH_REQUEST";
233 const wchar_t kMetroGetCurrentTabInfoMessage[] = 233 const wchar_t kMetroGetCurrentTabInfoMessage[] =
234 L"CHROME_METRO_GET_CURRENT_TAB_INFO"; 234 L"CHROME_METRO_GET_CURRENT_TAB_INFO";
235 const wchar_t kMetroRegistryPath[] = 235 const wchar_t kMetroRegistryPath[] =
236 L"Software\\" PRODUCT_STRING_PATH L"\\Metro"; 236 L"Software\\" PRODUCT_STRING_PATH L"\\Metro";
237 const wchar_t kLaunchModeValue[] = L"launch_mode"; 237 const wchar_t kLaunchModeValue[] = L"launch_mode";
238 // This is used by breakpad and the metrics reporting. 238 // This is used by breakpad and the metrics reporting.
239 const wchar_t kBrowserCrashDumpAttemptsRegistryPath[] = 239 const wchar_t kBrowserCrashDumpAttemptsRegistryPath[] =
240 L"Software\\" PRODUCT_STRING_PATH L"\\BrowserCrashDumpAttempts"; 240 L"Software\\" PRODUCT_STRING_PATH L"\\BrowserCrashDumpAttempts";
241 // This is used by browser exit code metrics reporting.
242 const wchar_t kBrowserExitCodesRegistryPath[] =
243 L"Software\\" PRODUCT_STRING_PATH L"\\BrowserExitCodes";
241 const char kSafeModeEnvVar[] = "CHROME_SAFE_MODE"; 244 const char kSafeModeEnvVar[] = "CHROME_SAFE_MODE";
242 #endif 245 #endif
243 246
244 #if defined(OS_CHROMEOS) 247 #if defined(OS_CHROMEOS)
245 const char kProfileDirPrefix[] = "u-"; 248 const char kProfileDirPrefix[] = "u-";
246 const char kLegacyProfileDir[] = "user"; 249 const char kLegacyProfileDir[] = "user";
247 const char kTestUserProfileDir[] = "test-user"; 250 const char kTestUserProfileDir[] = "test-user";
248 #endif 251 #endif
249 252
250 // This GUID is associated with any 'don't ask me again' settings that the 253 // This GUID is associated with any 'don't ask me again' settings that the
251 // user can select for different file types. 254 // user can select for different file types.
252 // {2676A9A2-D919-4FEE-9187-152100393AB2} 255 // {2676A9A2-D919-4FEE-9187-152100393AB2}
253 const char kApplicationClientIDStringForAVScanning[] = 256 const char kApplicationClientIDStringForAVScanning[] =
254 "2676A9A2-D919-4FEE-9187-152100393AB2"; 257 "2676A9A2-D919-4FEE-9187-152100393AB2";
255 258
256 const size_t kMaxMetaTagAttributeLength = 2000; 259 const size_t kMaxMetaTagAttributeLength = 2000;
257 260
258 } // namespace chrome 261 } // namespace chrome
259 262
260 #undef FPL 263 #undef FPL
OLDNEW
« no previous file with comments | « chrome/common/chrome_constants.h ('k') | components/browser_watcher.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698