OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #import "base/mac/cocoa_protocols.h" | |
8 #include "base/memory/scoped_nsobject.h" | 7 #include "base/memory/scoped_nsobject.h" |
9 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
10 #import "chrome/browser/ui/cocoa/view_resizer.h" | 9 #import "chrome/browser/ui/cocoa/view_resizer.h" |
11 | 10 |
12 @class AnimatableView; | 11 @class AnimatableView; |
13 class BaseDownloadItemModel; | 12 class BaseDownloadItemModel; |
14 class Browser; | 13 class Browser; |
15 @class BrowserWindowController; | 14 @class BrowserWindowController; |
16 @class DownloadItemController; | 15 @class DownloadItemController; |
17 class DownloadShelf; | 16 class DownloadShelf; |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 // Notification that we are closing and should release our downloads. | 101 // Notification that we are closing and should release our downloads. |
103 - (void)exiting; | 102 - (void)exiting; |
104 | 103 |
105 // Return the height of the download shelf. | 104 // Return the height of the download shelf. |
106 - (float)height; | 105 - (float)height; |
107 | 106 |
108 // Re-layouts all download items based on their current state. | 107 // Re-layouts all download items based on their current state. |
109 - (void)layoutItems; | 108 - (void)layoutItems; |
110 | 109 |
111 @end | 110 @end |
OLD | NEW |