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

Side by Side Diff: ash/common/wm_window.h

Issue 2563343002: Remove extension_misc::IsImeMenuExtensionId. (Closed)
Patch Set: Remove kExcludeFromMruKey. Created 4 years 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 | « ash/common/wm/window_state.cc ('k') | ash/common/wm_window_property.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 ASH_COMMON_WM_WINDOW_H_ 5 #ifndef ASH_COMMON_WM_WINDOW_H_
6 #define ASH_COMMON_WM_WINDOW_H_ 6 #define ASH_COMMON_WM_WINDOW_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 275
276 virtual bool IsActive() const = 0; 276 virtual bool IsActive() const = 0;
277 virtual void Activate() = 0; 277 virtual void Activate() = 0;
278 virtual void Deactivate() = 0; 278 virtual void Deactivate() = 0;
279 279
280 virtual void SetFullscreen() = 0; 280 virtual void SetFullscreen() = 0;
281 281
282 virtual void Maximize() = 0; 282 virtual void Maximize() = 0;
283 virtual void Minimize() = 0; 283 virtual void Minimize() = 0;
284 virtual void Unminimize() = 0; 284 virtual void Unminimize() = 0;
285 virtual void SetExcludedFromMru(bool excluded_from_mru) = 0;
286 285
287 virtual bool CanMaximize() const = 0; 286 virtual bool CanMaximize() const = 0;
288 virtual bool CanMinimize() const = 0; 287 virtual bool CanMinimize() const = 0;
289 virtual bool CanResize() const = 0; 288 virtual bool CanResize() const = 0;
290 virtual bool CanActivate() const = 0; 289 virtual bool CanActivate() const = 0;
291 290
292 virtual void StackChildAtTop(WmWindow* child) = 0; 291 virtual void StackChildAtTop(WmWindow* child) = 0;
293 virtual void StackChildAtBottom(WmWindow* child) = 0; 292 virtual void StackChildAtBottom(WmWindow* child) = 0;
294 virtual void StackChildAbove(WmWindow* child, WmWindow* target) = 0; 293 virtual void StackChildAbove(WmWindow* child, WmWindow* target) = 0;
295 virtual void StackChildBelow(WmWindow* child, WmWindow* target) = 0; 294 virtual void StackChildBelow(WmWindow* child, WmWindow* target) = 0;
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 virtual void AddLimitedPreTargetHandler(ui::EventHandler* handler) = 0; 340 virtual void AddLimitedPreTargetHandler(ui::EventHandler* handler) = 0;
342 virtual void RemoveLimitedPreTargetHandler(ui::EventHandler* handler) = 0; 341 virtual void RemoveLimitedPreTargetHandler(ui::EventHandler* handler) = 0;
343 342
344 protected: 343 protected:
345 virtual ~WmWindow() {} 344 virtual ~WmWindow() {}
346 }; 345 };
347 346
348 } // namespace ash 347 } // namespace ash
349 348
350 #endif // ASH_COMMON_WM_WINDOW_H_ 349 #endif // ASH_COMMON_WM_WINDOW_H_
OLDNEW
« no previous file with comments | « ash/common/wm/window_state.cc ('k') | ash/common/wm_window_property.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698