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

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

Issue 14328031: Adding a minimize function for clicks on launcher items if only a single item (already active) is a… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added one unit test and addressed comments Created 7 years, 8 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 | « chrome/common/chrome_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 "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 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 331
332 // Disables IP Pooling within the networks stack (SPDY only). When a connection 332 // Disables IP Pooling within the networks stack (SPDY only). When a connection
333 // is needed for a domain which shares an IP with an existing connection, 333 // is needed for a domain which shares an IP with an existing connection,
334 // attempt to use the existing connection. 334 // attempt to use the existing connection.
335 const char kDisableIPPooling[] = "disable-ip-pooling"; 335 const char kDisableIPPooling[] = "disable-ip-pooling";
336 336
337 // Disable local-only Instant extended API. 337 // Disable local-only Instant extended API.
338 const char kDisableLocalOnlyInstantExtendedAPI[] = 338 const char kDisableLocalOnlyInstantExtendedAPI[] =
339 "disable-local-only-instant-extended-api"; 339 "disable-local-only-instant-extended-api";
340 340
341 // Disable the behavior that the second click on a launcher item (the click when
342 // the item is already active) minimizes the item.
343 const char kDisableMinimizeOnSecondLauncherItemClick[] =
344 "disable-minimize-on-second-launcher-item-click";
345
341 // Disables the native Autofill UI, which is part of the browser process rather 346 // Disables the native Autofill UI, which is part of the browser process rather
342 // than part of the renderer process. http://crbug.com/51644 347 // than part of the renderer process. http://crbug.com/51644
343 const char kDisableNativeAutofillUi[] = "disable-new-autofill-ui"; 348 const char kDisableNativeAutofillUi[] = "disable-new-autofill-ui";
344 349
345 // Disables the menu on the NTP for accessing sessions from other devices. 350 // Disables the menu on the NTP for accessing sessions from other devices.
346 const char kDisableNTPOtherSessionsMenu[] = "disable-ntp-other-sessions-menu"; 351 const char kDisableNTPOtherSessionsMenu[] = "disable-ntp-other-sessions-menu";
347 352
348 // Disable pop-up blocking. 353 // Disable pop-up blocking.
349 const char kDisablePopupBlocking[] = "disable-popup-blocking"; 354 const char kDisablePopupBlocking[] = "disable-popup-blocking";
350 355
(...skipping 1330 matching lines...) Expand 10 before | Expand all | Expand 10 after
1681 1686
1682 // ----------------------------------------------------------------------------- 1687 // -----------------------------------------------------------------------------
1683 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1688 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1684 // 1689 //
1685 // You were going to just dump your switches here, weren't you? Instead, please 1690 // You were going to just dump your switches here, weren't you? Instead, please
1686 // put them in alphabetical order above, or in order inside the appropriate 1691 // put them in alphabetical order above, or in order inside the appropriate
1687 // ifdef at the bottom. The order should match the header. 1692 // ifdef at the bottom. The order should match the header.
1688 // ----------------------------------------------------------------------------- 1693 // -----------------------------------------------------------------------------
1689 1694
1690 } // namespace switches 1695 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698