OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 #import <Cocoa/Cocoa.h> | 5 #import <Cocoa/Cocoa.h> |
6 | 6 |
7 #include "base/mac/scoped_nsobject.h" | 7 #include "base/mac/scoped_nsobject.h" |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #import "chrome/browser/ui/cocoa/view_resizer.h" | 9 #import "chrome/browser/ui/cocoa/view_resizer.h" |
10 #include "ui/base/cocoa/tracking_area.h" | 10 #include "ui/base/cocoa/tracking_area.h" |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 // Returns our view cast as an AnimatableView. | 104 // Returns our view cast as an AnimatableView. |
105 - (AnimatableView*)animatableView; | 105 - (AnimatableView*)animatableView; |
106 | 106 |
107 - (DownloadShelf*)bridge; | 107 - (DownloadShelf*)bridge; |
108 - (BOOL)isVisible; | 108 - (BOOL)isVisible; |
109 | 109 |
110 // Add a new download item to the leftmost position of the download shelf. The | 110 // Add a new download item to the leftmost position of the download shelf. The |
111 // item should not have been already added to this shelf. | 111 // item should not have been already added to this shelf. |
112 - (void)addDownloadItem:(content::DownloadItem*)downloadItem; | 112 - (void)addDownloadItem:(content::DownloadItem*)downloadItem; |
113 | 113 |
| 114 // Removes |downloadItem| if it exists in this shelf. |
| 115 - (void)removeDownloadItem:(content::DownloadItem*)downloadItem; |
| 116 |
114 // Similar to addDownloadItem above, but adds a DownloadItemController. | 117 // Similar to addDownloadItem above, but adds a DownloadItemController. |
115 - (void)add:(DownloadItemController*)download; | 118 - (void)add:(DownloadItemController*)download; |
116 | 119 |
117 // Remove a download, possibly via clearing browser data. | 120 // Remove a download, possibly via clearing browser data. |
118 - (void)remove:(DownloadItemController*)download; | 121 - (void)remove:(DownloadItemController*)download; |
119 | 122 |
120 // Called by individual item controllers when their downloads are opened. | 123 // Called by individual item controllers when their downloads are opened. |
121 - (void)downloadWasOpened:(DownloadItemController*)download; | 124 - (void)downloadWasOpened:(DownloadItemController*)download; |
122 | 125 |
123 // Notification that the download shelf is going to be destroyed and should | 126 // Notification that the download shelf is going to be destroyed and should |
124 // release the downloads. | 127 // release the downloads. |
125 - (void)exiting; | 128 - (void)exiting; |
126 | 129 |
127 // Return the height of the download shelf. | 130 // Return the height of the download shelf. |
128 - (float)height; | 131 - (float)height; |
129 | 132 |
130 // Re-layouts all download items based on their current state. | 133 // Re-layouts all download items based on their current state. |
131 - (void)layoutItems; | 134 - (void)layoutItems; |
132 | 135 |
133 @end | 136 @end |
OLD | NEW |