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

Unified Diff: chrome/browser/extensions/api/app_window/app_window_api.cc

Issue 48113024: Allow chrome.app.window alwaysOnTop property in stable (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use camel case for other parameter names in app_window.idl 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/common/extensions/api/_api_features.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/api/app_window/app_window_api.cc
diff --git a/chrome/browser/extensions/api/app_window/app_window_api.cc b/chrome/browser/extensions/api/app_window/app_window_api.cc
index d4cf28281f3ac36efb0472bceabb50389c75adbf..94fc15c3398eb625bd97e9d39eaa314285e619d0 100644
--- a/chrome/browser/extensions/api/app_window/app_window_api.cc
+++ b/chrome/browser/extensions/api/app_window/app_window_api.cc
@@ -247,10 +247,8 @@ bool AppWindowCreateFunction::RunImpl() {
if (options->resizable.get())
create_params.resizable = *options->resizable.get();
- if (GetCurrentChannel() <= chrome::VersionInfo::CHANNEL_DEV &&
- options->always_on_top.get()) {
+ if (options->always_on_top.get())
create_params.always_on_top = *options->always_on_top.get();
- }
if (options->type != extensions::api::app_window::WINDOW_TYPE_PANEL) {
switch (options->state) {
« no previous file with comments | « no previous file | chrome/common/extensions/api/_api_features.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698