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

Side by Side Diff: ui/views/widget/widget.h

Issue 1746013002: Hide/show widget on Windows screen lock/unlock Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nits. Created 4 years, 9 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 | « ui/views/widget/native_widget_delegate.h ('k') | ui/views/widget/widget.cc » ('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 (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 #ifndef UI_VIEWS_WIDGET_WIDGET_H_ 5 #ifndef UI_VIEWS_WIDGET_WIDGET_H_
6 #define UI_VIEWS_WIDGET_WIDGET_H_ 6 #define UI_VIEWS_WIDGET_WIDGET_H_
7 7
8 #include <set> 8 #include <set>
9 #include <stack> 9 #include <stack>
10 #include <vector> 10 #include <vector>
(...skipping 765 matching lines...) Expand 10 before | Expand all | Expand 10 after
776 bool IsModal() const override; 776 bool IsModal() const override;
777 bool IsDialogBox() const override; 777 bool IsDialogBox() const override;
778 bool CanActivate() const override; 778 bool CanActivate() const override;
779 bool IsInactiveRenderingDisabled() const override; 779 bool IsInactiveRenderingDisabled() const override;
780 void EnableInactiveRendering() override; 780 void EnableInactiveRendering() override;
781 void OnNativeWidgetActivationChanged(bool active) override; 781 void OnNativeWidgetActivationChanged(bool active) override;
782 void OnNativeFocus() override; 782 void OnNativeFocus() override;
783 void OnNativeBlur() override; 783 void OnNativeBlur() override;
784 void OnNativeWidgetVisibilityChanging(bool visible) override; 784 void OnNativeWidgetVisibilityChanging(bool visible) override;
785 void OnNativeWidgetVisibilityChanged(bool visible) override; 785 void OnNativeWidgetVisibilityChanged(bool visible) override;
786 void OnSoftVisibilityChanged(bool visible) override;
786 void OnNativeWidgetCreated(bool desktop_widget) override; 787 void OnNativeWidgetCreated(bool desktop_widget) override;
787 void OnNativeWidgetDestroying() override; 788 void OnNativeWidgetDestroying() override;
788 void OnNativeWidgetDestroyed() override; 789 void OnNativeWidgetDestroyed() override;
789 gfx::Size GetMinimumSize() const override; 790 gfx::Size GetMinimumSize() const override;
790 gfx::Size GetMaximumSize() const override; 791 gfx::Size GetMaximumSize() const override;
791 void OnNativeWidgetMove() override; 792 void OnNativeWidgetMove() override;
792 void OnNativeWidgetSizeChanged(const gfx::Size& new_size) override; 793 void OnNativeWidgetSizeChanged(const gfx::Size& new_size) override;
793 void OnNativeWidgetWindowShowStateChanged() override; 794 void OnNativeWidgetWindowShowStateChanged() override;
794 void OnNativeWidgetBeginUserBoundsChange() override; 795 void OnNativeWidgetBeginUserBoundsChange() override;
795 void OnNativeWidgetEndUserBoundsChange() override; 796 void OnNativeWidgetEndUserBoundsChange() override;
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
967 bool movement_disabled_; 968 bool movement_disabled_;
968 969
969 ScopedObserver<ui::NativeTheme, ui::NativeThemeObserver> observer_manager_; 970 ScopedObserver<ui::NativeTheme, ui::NativeThemeObserver> observer_manager_;
970 971
971 DISALLOW_COPY_AND_ASSIGN(Widget); 972 DISALLOW_COPY_AND_ASSIGN(Widget);
972 }; 973 };
973 974
974 } // namespace views 975 } // namespace views
975 976
976 #endif // UI_VIEWS_WIDGET_WIDGET_H_ 977 #endif // UI_VIEWS_WIDGET_WIDGET_H_
OLDNEW
« no previous file with comments | « ui/views/widget/native_widget_delegate.h ('k') | ui/views/widget/widget.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698