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

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

Issue 646703002: mac: Use a full-size content view (reland 1). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments from avi. Created 6 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
« 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 1270 matching lines...) Expand 10 before | Expand all | Expand 10 after
1281 1281
1282 #if defined(OS_MACOSX) 1282 #if defined(OS_MACOSX)
1283 // Prevents Chrome from quitting when Chrome Apps are open. 1283 // Prevents Chrome from quitting when Chrome Apps are open.
1284 const char kAppsKeepChromeAliveInTests[] = "apps-keep-chrome-alive-in-tests"; 1284 const char kAppsKeepChromeAliveInTests[] = "apps-keep-chrome-alive-in-tests";
1285 1285
1286 // Forcibly disables Lion-style on newer OSes, to allow developers to test the 1286 // Forcibly disables Lion-style on newer OSes, to allow developers to test the
1287 // older, SnowLeopard-style fullscreen. 1287 // older, SnowLeopard-style fullscreen.
1288 const char kDisableSystemFullscreenForTesting[] = 1288 const char kDisableSystemFullscreenForTesting[] =
1289 "disable-system-fullscreen-for-testing"; 1289 "disable-system-fullscreen-for-testing";
1290 1290
1291 // Makes the browser window's contentView take up the full size of the
1292 // window in OSX Yosemite.
1293 const char kEnableFullSizeContentView[] = "enable-full-size-content-view";
1294
1295 // A process type (switches::kProcessType) that relaunches the browser. See 1291 // A process type (switches::kProcessType) that relaunches the browser. See
1296 // chrome/browser/mac/relauncher.h. 1292 // chrome/browser/mac/relauncher.h.
1297 const char kRelauncherProcess[] = "relauncher"; 1293 const char kRelauncherProcess[] = "relauncher";
1298 1294
1299 #endif 1295 #endif
1300 1296
1301 // Use bubbles for content permissions requests instead of infobars. 1297 // Use bubbles for content permissions requests instead of infobars.
1302 const char kEnablePermissionsBubbles[] = "enable-permissions-bubbles"; 1298 const char kEnablePermissionsBubbles[] = "enable-permissions-bubbles";
1303 1299
1304 #if defined(OS_WIN) 1300 #if defined(OS_WIN)
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
1361 1357
1362 // ----------------------------------------------------------------------------- 1358 // -----------------------------------------------------------------------------
1363 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1359 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1364 // 1360 //
1365 // You were going to just dump your switches here, weren't you? Instead, please 1361 // You were going to just dump your switches here, weren't you? Instead, please
1366 // put them in alphabetical order above, or in order inside the appropriate 1362 // put them in alphabetical order above, or in order inside the appropriate
1367 // ifdef at the bottom. The order should match the header. 1363 // ifdef at the bottom. The order should match the header.
1368 // ----------------------------------------------------------------------------- 1364 // -----------------------------------------------------------------------------
1369 1365
1370 } // namespace switches 1366 } // 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