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

Unified Diff: ui/views/widget/desktop_root_window_host_linux.cc

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_root_window_host_linux.h ('k') | ui/views/widget/desktop_root_window_host_win.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_linux.cc
===================================================================
--- ui/views/widget/desktop_root_window_host_linux.cc (revision 157638)
+++ ui/views/widget/desktop_root_window_host_linux.cc (working copy)
@@ -383,6 +383,55 @@
return NULL;
}
+void DesktopRootWindowHostLinux::SetFullscreen(bool fullscreen) {
+ // TODO(erg):
+ NOTIMPLEMENTED();
+}
+
+bool DesktopRootWindowHostLinux::IsFullscreen() const {
+ // TODO(erg):
+ NOTIMPLEMENTED();
+ return false;
+}
+
+void DesktopRootWindowHostLinux::SetOpacity(unsigned char opacity) {
+ // TODO(erg):
+ NOTIMPLEMENTED();
+}
+
+void DesktopRootWindowHostLinux::SetWindowIcons(
+ const gfx::ImageSkia& window_icon, const gfx::ImageSkia& app_icon) {
+ // TODO(erg):
+ NOTIMPLEMENTED();
+}
+
+void DesktopRootWindowHostLinux::SetAccessibleName(const string16& name) {
+ // TODO(erg):
+ NOTIMPLEMENTED();
+}
+
+void DesktopRootWindowHostLinux::SetAccessibleRole(
+ ui::AccessibilityTypes::Role role) {
+ // TODO(erg):
+ NOTIMPLEMENTED();
+}
+
+void DesktopRootWindowHostLinux::SetAccessibleState(
+ ui::AccessibilityTypes::State state) {
+ // TODO(erg):
+ NOTIMPLEMENTED();
+}
+
+void DesktopRootWindowHostLinux::InitModalType(ui::ModalType modal_type) {
+ // TODO(erg):
+ NOTIMPLEMENTED();
+}
+
+void DesktopRootWindowHostLinux::FlashFrame(bool flash_frame) {
+ // TODO(erg):
+ NOTIMPLEMENTED();
+}
+
////////////////////////////////////////////////////////////////////////////////
// DesktopRootWindowHostLinux, aura::RootWindowHost implementation:
« no previous file with comments | « ui/views/widget/desktop_root_window_host_linux.h ('k') | ui/views/widget/desktop_root_window_host_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698