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

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

Issue 869073003: Introducing new switches for default wallpapers for accounts for kids. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « no previous file | chromeos/chromeos_switches.h » ('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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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/crash_keys.h" 5 #include "chrome/common/crash_keys.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/format_macros.h" 8 #include "base/format_macros.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/strings/string_split.h" 10 #include "base/strings/string_split.h"
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 ::switches::kLoggingLevel, 270 ::switches::kLoggingLevel,
271 ::switches::kPpapiFlashArgs, 271 ::switches::kPpapiFlashArgs,
272 ::switches::kPpapiFlashPath, 272 ::switches::kPpapiFlashPath,
273 ::switches::kRegisterPepperPlugins, 273 ::switches::kRegisterPepperPlugins,
274 ::switches::kUIPrioritizeInGpuProcess, 274 ::switches::kUIPrioritizeInGpuProcess,
275 ::switches::kUseGL, 275 ::switches::kUseGL,
276 ::switches::kUserDataDir, 276 ::switches::kUserDataDir,
277 ::switches::kV, 277 ::switches::kV,
278 ::switches::kVModule, 278 ::switches::kVModule,
279 // Cros/CC flgas are specified as raw strings to avoid dependency. 279 // Cros/CC flgas are specified as raw strings to avoid dependency.
280 "child-wallpaper-large",
281 "child-wallpaper-small",
280 "default-wallpaper-large", 282 "default-wallpaper-large",
281 "default-wallpaper-small", 283 "default-wallpaper-small",
282 "guest-wallpaper-large", 284 "guest-wallpaper-large",
283 "guest-wallpaper-small", 285 "guest-wallpaper-small",
284 "enterprise-enable-forced-re-enrollment", 286 "enterprise-enable-forced-re-enrollment",
285 "enterprise-enrollment-initial-modulus", 287 "enterprise-enrollment-initial-modulus",
286 "enterprise-enrollment-modulus-limit", 288 "enterprise-enrollment-modulus-limit",
287 "login-profile", 289 "login-profile",
288 "login-user", 290 "login-user",
289 "max-tiles-for-interest-area", 291 "max-tiles-for-interest-area",
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 } 394 }
393 395
394 ScopedPrinterInfo::~ScopedPrinterInfo() { 396 ScopedPrinterInfo::~ScopedPrinterInfo() {
395 for (size_t i = 0; i < kPrinterInfoCount; ++i) { 397 for (size_t i = 0; i < kPrinterInfoCount; ++i) {
396 std::string key = base::StringPrintf(kPrinterInfo, i + 1); 398 std::string key = base::StringPrintf(kPrinterInfo, i + 1);
397 base::debug::ClearCrashKey(key); 399 base::debug::ClearCrashKey(key);
398 } 400 }
399 } 401 }
400 402
401 } // namespace crash_keys 403 } // namespace crash_keys
OLDNEW
« no previous file with comments | « no previous file | chromeos/chromeos_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698