| OLD | NEW |
| 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 #include "extensions/shell/browser/shell_native_app_window.h" | 5 #include "extensions/shell/browser/shell_native_app_window.h" |
| 6 | 6 |
| 7 #include "extensions/shell/browser/desktop_controller.h" | 7 #include "extensions/shell/browser/desktop_controller.h" |
| 8 #include "third_party/skia/include/core/SkRegion.h" | 8 #include "third_party/skia/include/core/SkRegion.h" |
| 9 #include "ui/gfx/geometry/insets.h" | 9 #include "ui/gfx/geometry/insets.h" |
| 10 #include "ui/gfx/geometry/point.h" | 10 #include "ui/gfx/geometry/point.h" |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 | 188 |
| 189 void ShellNativeAppWindow::SetVisibleOnAllWorkspaces(bool always_visible) { | 189 void ShellNativeAppWindow::SetVisibleOnAllWorkspaces(bool always_visible) { |
| 190 NOTIMPLEMENTED(); | 190 NOTIMPLEMENTED(); |
| 191 } | 191 } |
| 192 | 192 |
| 193 bool ShellNativeAppWindow::CanHaveAlphaEnabled() const { | 193 bool ShellNativeAppWindow::CanHaveAlphaEnabled() const { |
| 194 // No background to display if the window was transparent. | 194 // No background to display if the window was transparent. |
| 195 return false; | 195 return false; |
| 196 } | 196 } |
| 197 | 197 |
| 198 void ShellNativeAppWindow::SetActivateOnPointer(bool activate_on_pointer) { |
| 199 NOTIMPLEMENTED(); |
| 200 } |
| 201 |
| 198 } // namespace extensions | 202 } // namespace extensions |
| OLD | NEW |