| Index: chrome/browser/cocoa/draggable_button.h
 | 
| diff --git a/chrome/browser/cocoa/draggable_button.h b/chrome/browser/cocoa/draggable_button.h
 | 
| index 2e166b7aa84eb71afd955fd6ff691226cee00ee3..b1245e54d98c40d7d46aa70a830c3ff172c0293a 100644
 | 
| --- a/chrome/browser/cocoa/draggable_button.h
 | 
| +++ b/chrome/browser/cocoa/draggable_button.h
 | 
| @@ -3,11 +3,12 @@
 | 
|  // found in the LICENSE file.
 | 
|  
 | 
|  #import <Cocoa/Cocoa.h>
 | 
| +#import "chrome/browser/cocoa/button_with_viewid.h"
 | 
|  
 | 
|  // Class for buttons that can be drag sources. If the mouse is clicked and moved
 | 
|  // more than a given distance, this class will call |-beginDrag:| instead of
 | 
|  // |-performClick:|. Subclasses should override these two methods.
 | 
| -@interface DraggableButton : NSButton {
 | 
| +@interface DraggableButton : ButtonWithViewID {
 | 
|   @private
 | 
|    BOOL draggable_;     // Is this a draggable type of button?
 | 
|  }
 | 
| 
 |