diff options
author | jeremya@chromium.org <jeremya@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-06 05:25:44 +0000 |
---|---|---|
committer | jeremya@chromium.org <jeremya@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-06 05:25:44 +0000 |
commit | 58c740fa707d664527a92b6e4df7eb955d33fa38 (patch) | |
tree | 2597cb1a7ec83f0aa28d35cc6238d2b65b96e2be /chrome/common | |
parent | d14c5b33046616ee8715181d70bc7fe33659be17 (diff) | |
download | chromium_src-58c740fa707d664527a92b6e4df7eb955d33fa38.zip chromium_src-58c740fa707d664527a92b6e4df7eb955d33fa38.tar.gz chromium_src-58c740fa707d664527a92b6e4df7eb955d33fa38.tar.bz2 |
Make app windows use native frames on Windows.
Also make native frames support min and max size.
BUG=225916
R=ben@chromium.org
Review URL: https://chromiumcodereview.appspot.com/14024009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@198375 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/chrome_switches.cc | 3 | ||||
-rw-r--r-- | chrome/common/chrome_switches.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index 297ba14..6197a21 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -108,6 +108,9 @@ const char kAppsNewInstallBubble[] = "apps-new-install-bubble"; // Disable throbber for extension apps. const char kAppsNoThrob[] = "apps-no-throb"; +// Experimental native frame support for packaged apps. +const char kAppsUseNativeFrame[] = "apps-use-native-frame"; + // Whitelist of servers that Negotiate will generate delegated Kerberos tickets // for. const char kAuthNegotiateDelegateWhitelist[] = diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h index e78be7e..3f1d2c4d 100644 --- a/chrome/common/chrome_switches.h +++ b/chrome/common/chrome_switches.h @@ -48,6 +48,7 @@ extern const char kAppModeAuthCode[]; extern const char kAppModeOAuth2Token[]; extern const char kAppsNewInstallBubble[]; extern const char kAppsNoThrob[]; +extern const char kAppsUseNativeFrame[]; extern const char kAuthNegotiateDelegateWhitelist[]; extern const char kAuthSchemes[]; extern const char kAuthServerWhitelist[]; |