| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 <Cocoa/Cocoa.h> | 5 #import <Cocoa/Cocoa.h> |
| 6 | 6 |
| 7 #include "base/scoped_nsobject.h" | 7 #include "base/scoped_nsobject.h" |
| 8 #include "base/scoped_ptr.h" | 8 #include "base/scoped_ptr.h" |
| 9 #import "chrome/browser/cocoa/view_resizer.h" | 9 #import "chrome/browser/cocoa/view_resizer.h" |
| 10 | 10 |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 | 69 |
| 70 // Remove a download, possibly via clearing browser data. | 70 // Remove a download, possibly via clearing browser data. |
| 71 - (void)remove:(DownloadItemController*)download; | 71 - (void)remove:(DownloadItemController*)download; |
| 72 | 72 |
| 73 // Notification that we are closing and should release our downloads. | 73 // Notification that we are closing and should release our downloads. |
| 74 - (void)exiting; | 74 - (void)exiting; |
| 75 | 75 |
| 76 // Return the height of the download shelf. | 76 // Return the height of the download shelf. |
| 77 - (float)height; | 77 - (float)height; |
| 78 | 78 |
| 79 // Re-layouts all download items based on their current state. |
| 80 - (void)layoutItems; |
| 81 |
| 79 @end | 82 @end |
| OLD | NEW |