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

Unified Diff: chrome/browser/chromeos/login/background_view.cc

Issue 6973029: Integrate WebUI Login with cros. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Updated code in response to review comments Created 9 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
Index: chrome/browser/chromeos/login/background_view.cc
diff --git a/chrome/browser/chromeos/login/background_view.cc b/chrome/browser/chromeos/login/background_view.cc
index 2f3e05525bcf3e9e96ad7ce606697e2083787622..d5b25bbd586ff053fec66f3fbafc9808c3b817d8 100644
--- a/chrome/browser/chromeos/login/background_view.cc
+++ b/chrome/browser/chromeos/login/background_view.cc
@@ -72,17 +72,6 @@ int GetStepId(size_t step) {
}
}
-// This gets rid of the ugly X default cursor.
-static void ResetXCursor() {
- // TODO(sky): nuke this once new window manager is in place.
- Display* display = ui::GetXDisplay();
- Cursor cursor = XCreateFontCursor(display, XC_left_ptr);
- XID root_window = ui::GetX11RootWindow();
- XSetWindowAttributes attr;
- attr.cursor = cursor;
- XChangeWindowAttributes(display, root_window, CWCursor, &attr);
-}
-
} // namespace
namespace chromeos {

Powered by Google App Engine
This is Rietveld 408576698