Chromium Code Reviews| Index: ui/views/mus/platform_window_mus.cc |
| diff --git a/ui/views/mus/platform_window_mus.cc b/ui/views/mus/platform_window_mus.cc |
| index ca52025706cba591c00971f92c16129216315c5e..2b29fe7b0d987f3cd6f51224392af91d5aad6048 100644 |
| --- a/ui/views/mus/platform_window_mus.cc |
| +++ b/ui/views/mus/platform_window_mus.cc |
| @@ -105,10 +105,6 @@ PlatformWindowMus::~PlatformWindowMus() { |
| mus_window_->Destroy(); |
| } |
| -void PlatformWindowMus::Activate() { |
| - mus_window_->SetFocus(); |
| -} |
| - |
| void PlatformWindowMus::SetCursorById(mus::mojom::Cursor cursor) { |
| if (last_cursor_ != cursor) { |
| // The ui::PlatformWindow interface uses ui::PlatformCursor at this level, |
| @@ -133,7 +129,7 @@ void PlatformWindowMus::Close() { |
| } |
| void PlatformWindowMus::SetBounds(const gfx::Rect& bounds) { |
| - mus_window_->SetBounds(bounds); |
| + NOTIMPLEMENTED(); |
|
sadrul
2016/05/09 18:55:54
Remove the NOTIMEPLEMENTED()
Mark Dittmer
2016/05/09 19:17:04
Done.
|
| } |
| gfx::Rect PlatformWindowMus::GetBounds() { |