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

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

Issue 1530863002: Allow audio debug recordings through a private API extension. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tommi's comment Created 5 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
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_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 9
10 namespace switches { 10 namespace switches {
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 // given file. The file is overwritten if it exists. 365 // given file. The file is overwritten if it exists.
366 const char kDumpBrowserHistograms[] = "dump-browser-histograms"; 366 const char kDumpBrowserHistograms[] = "dump-browser-histograms";
367 367
368 // Overrides the path of Easy Unlock component app. 368 // Overrides the path of Easy Unlock component app.
369 const char kEasyUnlockAppPath[] = "easy-unlock-app-path"; 369 const char kEasyUnlockAppPath[] = "easy-unlock-app-path";
370 370
371 // Enables the display of a banner allowing the user to add a web 371 // Enables the display of a banner allowing the user to add a web
372 // app to their shelf (or platform-specific equivalent) 372 // app to their shelf (or platform-specific equivalent)
373 const char kEnableAddToShelf[] = "enable-add-to-shelf"; 373 const char kEnableAddToShelf[] = "enable-add-to-shelf";
374 374
375 // If the WebRTC logging private API is active, enables AEC dumps.
376 const char kEnableAudioDebugRecordingsFromExtension[] =
377 "enable-audio-debug-recordings-from-extension";
378
375 // Enable OS integration for Chrome app file associations. 379 // Enable OS integration for Chrome app file associations.
376 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations"; 380 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations";
377 381
378 // Enables the benchmarking extensions. 382 // Enables the benchmarking extensions.
379 const char kEnableBenchmarking[] = "enable-benchmarking"; 383 const char kEnableBenchmarking[] = "enable-benchmarking";
380 384
381 // Enables the multi-level undo system for bookmarks. 385 // Enables the multi-level undo system for bookmarks.
382 const char kEnableBookmarkUndo[] = "enable-bookmark-undo"; 386 const char kEnableBookmarkUndo[] = "enable-bookmark-undo";
383 387
384 // Enables detection of child accounts. 388 // Enables detection of child accounts.
(...skipping 1004 matching lines...) Expand 10 before | Expand all | Expand 10 after
1389 1393
1390 // ----------------------------------------------------------------------------- 1394 // -----------------------------------------------------------------------------
1391 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1395 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1392 // 1396 //
1393 // You were going to just dump your switches here, weren't you? Instead, please 1397 // You were going to just dump your switches here, weren't you? Instead, please
1394 // put them in alphabetical order above, or in order inside the appropriate 1398 // put them in alphabetical order above, or in order inside the appropriate
1395 // ifdef at the bottom. The order should match the header. 1399 // ifdef at the bottom. The order should match the header.
1396 // ----------------------------------------------------------------------------- 1400 // -----------------------------------------------------------------------------
1397 1401
1398 } // namespace switches 1402 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698