| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #import "chrome/browser/ui/cocoa/find_bar_view.h" | 5 #import "chrome/browser/ui/cocoa/find_bar/find_bar_view.h" |
| 6 | 6 |
| 7 #import "chrome/browser/ui/cocoa/themed_window.h" | 7 #import "chrome/browser/ui/cocoa/themed_window.h" |
| 8 #import "chrome/browser/ui/cocoa/url_drop_target.h" | 8 #import "chrome/browser/ui/cocoa/url_drop_target.h" |
| 9 #import "chrome/browser/ui/cocoa/view_id_util.h" | 9 #import "chrome/browser/ui/cocoa/view_id_util.h" |
| 10 | 10 |
| 11 namespace { | 11 namespace { |
| 12 CGFloat kCurveSize = 8; | 12 CGFloat kCurveSize = 8; |
| 13 } // end namespace | 13 } // end namespace |
| 14 | 14 |
| 15 @implementation FindBarView | 15 @implementation FindBarView |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 // Eat drag operations, to prevent drags from going through to the views below. | 122 // Eat drag operations, to prevent drags from going through to the views below. |
| 123 - (NSDragOperation)draggingEntered:(id<NSDraggingInfo>)info { | 123 - (NSDragOperation)draggingEntered:(id<NSDraggingInfo>)info { |
| 124 return NSDragOperationNone; | 124 return NSDragOperationNone; |
| 125 } | 125 } |
| 126 | 126 |
| 127 - (ViewID)viewID { | 127 - (ViewID)viewID { |
| 128 return VIEW_ID_FIND_IN_PAGE; | 128 return VIEW_ID_FIND_IN_PAGE; |
| 129 } | 129 } |
| 130 | 130 |
| 131 @end | 131 @end |
| OLD | NEW |