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

Side by Side Diff: content/public/common/content_switches.cc

Issue 32543006: Remove --enable-audible-notifications flag for feature launch. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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 | « content/public/common/content_switches.h ('k') | no next file » | 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 "content/public/common/content_switches.h" 5 #include "content/public/common/content_switches.h"
6 6
7 namespace switches { 7 namespace switches {
8 8
9 // By default, file:// URIs cannot read other file:// URIs. This is an 9 // By default, file:// URIs cannot read other file:// URIs. This is an
10 // override for developers who need the old behavior for testing. 10 // override for developers who need the old behavior for testing.
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 "enable-accelerated-overflow-scroll"; 337 "enable-accelerated-overflow-scroll";
338 338
339 // Enables accelerated compositing for scrollable frames for accelerated 339 // Enables accelerated compositing for scrollable frames for accelerated
340 // scrolling for them. Requires kForceCompositingMode. 340 // scrolling for them. Requires kForceCompositingMode.
341 const char kEnableAcceleratedScrollableFrames[] = 341 const char kEnableAcceleratedScrollableFrames[] =
342 "enable-accelerated-scrollable-frames"; 342 "enable-accelerated-scrollable-frames";
343 343
344 // Turns on extremely verbose logging of accessibility events. 344 // Turns on extremely verbose logging of accessibility events.
345 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging"; 345 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging";
346 346
347 // Enable notifications of audible/silent audio output from a render view.
348 //
349 // TODO(miu): Remove --enable-audible-notifications once the feature goes
350 // live. http://crbug.com/178934
351 const char kEnableAudibleNotifications[] = "enable-audible-notifications";
352
353 // Use a begin frame signal from browser to renderer to schedule rendering. 347 // Use a begin frame signal from browser to renderer to schedule rendering.
354 const char kEnableBeginFrameScheduling[] = "enable-begin-frame-scheduling"; 348 const char kEnableBeginFrameScheduling[] = "enable-begin-frame-scheduling";
355 349
356 // Enables browser plugin for all types of pages. 350 // Enables browser plugin for all types of pages.
357 const char kEnableBrowserPluginForAllViewTypes[] = 351 const char kEnableBrowserPluginForAllViewTypes[] =
358 "enable-browser-plugin-for-all-view-types"; 352 "enable-browser-plugin-for-all-view-types";
359 353
360 // Enables Drag and Drop into and out of Browser Plugin. 354 // Enables Drag and Drop into and out of Browser Plugin.
361 // kEnableBrowserPluginGuestViews must also be set at this time. 355 // kEnableBrowserPluginGuestViews must also be set at this time.
362 const char kEnableBrowserPluginDragDrop[] = "enable-browser-plugin-drag-drop"; 356 const char kEnableBrowserPluginDragDrop[] = "enable-browser-plugin-drag-drop";
(...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after
1001 #endif 995 #endif
1002 996
1003 #if defined(USE_AURA) 997 #if defined(USE_AURA)
1004 // Forces usage of the test compositor. Needed to run ui tests on bots. 998 // Forces usage of the test compositor. Needed to run ui tests on bots.
1005 extern const char kTestCompositor[] = "test-compositor"; 999 extern const char kTestCompositor[] = "test-compositor";
1006 #endif 1000 #endif
1007 1001
1008 // Don't dump stuff here, follow the same order as the header. 1002 // Don't dump stuff here, follow the same order as the header.
1009 1003
1010 } // namespace switches 1004 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698