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

Unified Diff: ui/views/widget/desktop_root_window_host.h

Issue 10958005: Trivial plumbing of some methods from DesktopNativeWidgetAura to DesktopRootWindowHost. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/views/widget/desktop_native_widget_aura.cc ('k') | ui/views/widget/desktop_root_window_host_linux.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/widget/desktop_root_window_host.h
===================================================================
--- ui/views/widget/desktop_root_window_host.h (revision 157638)
+++ ui/views/widget/desktop_root_window_host.h (working copy)
@@ -14,6 +14,7 @@
}
namespace gfx {
+class ImageSkia;
class Rect;
}
@@ -84,6 +85,23 @@
virtual bool ShouldUseNativeFrame() = 0;
virtual void FrameTypeChanged() = 0;
virtual NonClientFrameView* CreateNonClientFrameView() = 0;
+
+ virtual void SetFullscreen(bool fullscreen) = 0;
+ virtual bool IsFullscreen() const = 0;
+
+ virtual void SetOpacity(unsigned char opacity) = 0;
+
+ virtual void SetWindowIcons(const gfx::ImageSkia& window_icon,
+ const gfx::ImageSkia& app_icon) = 0;
+
+ virtual void SetAccessibleName(const string16& name) = 0;
+ virtual void SetAccessibleRole(ui::AccessibilityTypes::Role role) = 0;
+ virtual void SetAccessibleState(ui::AccessibilityTypes::State state) = 0;
+
+ virtual void InitModalType(ui::ModalType modal_type) = 0;
+
+ virtual void FlashFrame(bool flash_frame) = 0;
+
};
} // namespace views
« no previous file with comments | « ui/views/widget/desktop_native_widget_aura.cc ('k') | ui/views/widget/desktop_root_window_host_linux.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698