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

Side by Side Diff: extensions/browser/app_window/app_window.h

Issue 550413002: Revert "Add AppWindow.setVisibleOnAllWorkspaces." (https://codereview.chromium.org/469993003) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_H_ 5 #ifndef EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_H_
6 #define EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_H_ 6 #define EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 // If true, the window will be resizable by the user. Defaults to true. 173 // If true, the window will be resizable by the user. Defaults to true.
174 bool resizable; 174 bool resizable;
175 175
176 // If true, the window will be focused on creation. Defaults to true. 176 // If true, the window will be focused on creation. Defaults to true.
177 bool focused; 177 bool focused;
178 178
179 // If true, the window will stay on top of other windows that are not 179 // If true, the window will stay on top of other windows that are not
180 // configured to be always on top. Defaults to false. 180 // configured to be always on top. Defaults to false.
181 bool always_on_top; 181 bool always_on_top;
182 182
183 // If true, the window will be visible on all workspaces. Defaults to false.
184 bool visible_on_all_workspaces;
185
186 // The API enables developers to specify content or window bounds. This 183 // The API enables developers to specify content or window bounds. This
187 // function combines them into a single, constrained window size. 184 // function combines them into a single, constrained window size.
188 gfx::Rect GetInitialWindowBounds(const gfx::Insets& frame_insets) const; 185 gfx::Rect GetInitialWindowBounds(const gfx::Insets& frame_insets) const;
189 186
190 // The API enables developers to specify content or window size constraints. 187 // The API enables developers to specify content or window size constraints.
191 // These functions combine them so that we can work with one set of 188 // These functions combine them so that we can work with one set of
192 // constraints. 189 // constraints.
193 gfx::Size GetContentMinimumSize(const gfx::Insets& frame_insets) const; 190 gfx::Size GetContentMinimumSize(const gfx::Insets& frame_insets) const;
194 gfx::Size GetContentMaximumSize(const gfx::Insets& frame_insets) const; 191 gfx::Size GetContentMaximumSize(const gfx::Insets& frame_insets) const;
195 gfx::Size GetWindowMinimumSize(const gfx::Insets& frame_insets) const; 192 gfx::Size GetWindowMinimumSize(const gfx::Insets& frame_insets) const;
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
549 546
550 // Whether |alpha_enabled| was set in the CreateParams. 547 // Whether |alpha_enabled| was set in the CreateParams.
551 bool requested_alpha_enabled_; 548 bool requested_alpha_enabled_;
552 549
553 DISALLOW_COPY_AND_ASSIGN(AppWindow); 550 DISALLOW_COPY_AND_ASSIGN(AppWindow);
554 }; 551 };
555 552
556 } // namespace extensions 553 } // namespace extensions
557 554
558 #endif // EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_H_ 555 #endif // EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_H_
OLDNEW
« no previous file with comments | « extensions/browser/api/app_window/app_window_apitest.cc ('k') | extensions/browser/app_window/native_app_window.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698