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

Unified Diff: ui/aura/window.cc

Issue 1135063002: aura: Remove unused Window::Blur(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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/aura/window.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « ui/aura/window.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698