| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 "chrome/browser/ui/cocoa/bookmarks/bookmark_drag_drop.h" | 5 #include "chrome/browser/ui/cocoa/bookmarks/bookmark_drag_drop_cocoa.h" |
| 6 | 6 |
| 7 #import <Cocoa/Cocoa.h> | 7 #import <Cocoa/Cocoa.h> |
| 8 | 8 |
| 9 #include <cmath> | 9 #include <cmath> |
| 10 | 10 |
| 11 #include "base/logging.h" | 11 #include "base/logging.h" |
| 12 #include "base/memory/scoped_nsobject.h" | 12 #include "base/memory/scoped_nsobject.h" |
| 13 #include "base/message_loop.h" | 13 #include "base/message_loop.h" |
| 14 #include "base/string16.h" | 14 #include "base/string16.h" |
| 15 #include "base/sys_string_conversions.h" | 15 #include "base/sys_string_conversions.h" |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 offset:NSZeroSize | 177 offset:NSZeroSize |
| 178 event:drag_event | 178 event:drag_event |
| 179 pasteboard:[NSPasteboard pasteboardWithName:NSDragPboard] | 179 pasteboard:[NSPasteboard pasteboardWithName:NSDragPboard] |
| 180 source:nil | 180 source:nil |
| 181 slideBack:YES]; | 181 slideBack:YES]; |
| 182 | 182 |
| 183 MessageLoop::current()->SetNestableTasksAllowed(was_nested); | 183 MessageLoop::current()->SetNestableTasksAllowed(was_nested); |
| 184 } | 184 } |
| 185 | 185 |
| 186 } // namespace chrome | 186 } // namespace chrome |
| OLD | NEW |