| Index: ui/aura/window.cc
|
| diff --git a/ui/aura/window.cc b/ui/aura/window.cc
|
| index 252e231a731b0d36b8c989194e81e15a80bf3731..a7d8b2d4cff29f289ce83c20574b2b16cac70bf4 100644
|
| --- a/ui/aura/window.cc
|
| +++ b/ui/aura/window.cc
|
| @@ -675,12 +675,6 @@ void Window::Focus() {
|
| client->FocusWindow(this);
|
| }
|
|
|
| -void Window::Blur() {
|
| - client::FocusClient* client = client::GetFocusClient(this);
|
| - DCHECK(client);
|
| - client->FocusWindow(NULL);
|
| -}
|
| -
|
| bool Window::HasFocus() const {
|
| client::FocusClient* client = client::GetFocusClient(this);
|
| return client && client->GetFocusedWindow() == this;
|
|
|