| OLD | NEW | 
|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "ui/views/widget/desktop_aura/desktop_native_cursor_manager.h" | 5 #include "ui/views/widget/desktop_aura/desktop_native_cursor_manager.h" | 
| 6 | 6 | 
| 7 #include "ui/aura/root_window.h" | 7 #include "ui/aura/root_window.h" | 
| 8 #include "ui/base/cursor/cursor_loader.h" | 8 #include "ui/base/cursor/cursor_loader.h" | 
| 9 #include "ui/views/widget/desktop_aura/desktop_cursor_loader_updater.h" | 9 #include "ui/views/widget/desktop_aura/desktop_cursor_loader_updater.h" | 
| 10 | 10 | 
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 110 | 110 | 
| 111   SetVisibility(delegate->IsCursorVisible(), delegate); | 111   SetVisibility(delegate->IsCursorVisible(), delegate); | 
| 112 | 112 | 
| 113   for (RootWindows::const_iterator i = root_windows_.begin(); | 113   for (RootWindows::const_iterator i = root_windows_.begin(); | 
| 114        i != root_windows_.end(); | 114        i != root_windows_.end(); | 
| 115        ++i) { | 115        ++i) { | 
| 116     (*i)->OnMouseEventsEnableStateChanged(enabled); | 116     (*i)->OnMouseEventsEnableStateChanged(enabled); | 
| 117   } | 117   } | 
| 118 } | 118 } | 
| 119 | 119 | 
|  | 120 void DesktopNativeCursorManager::SetNativeCursorEnabled( | 
|  | 121     bool enabled, | 
|  | 122     views::corewm::NativeCursorManagerDelegate* delegate) { | 
|  | 123   NOTIMPLEMENTED(); | 
|  | 124 } | 
|  | 125 | 
| 120 }  // namespace views | 126 }  // namespace views | 
| OLD | NEW | 
|---|