| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |