| 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 <memory> | 7 #include <memory> |
| 8 | 8 |
| 9 #include "base/mac/scoped_nsobject.h" | 9 #include "base/mac/scoped_nsobject.h" |
| 10 #import "chrome/browser/ui/cocoa/has_weak_browser_pointer.h" | 10 #import "chrome/browser/ui/cocoa/has_weak_browser_pointer.h" |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 // Add a new download item to the leftmost position of the download shelf. The | 113 // Add a new download item to the leftmost position of the download shelf. The |
| 114 // item should not have been already added to this shelf. | 114 // item should not have been already added to this shelf. |
| 115 - (void)addDownloadItem:(content::DownloadItem*)downloadItem; | 115 - (void)addDownloadItem:(content::DownloadItem*)downloadItem; |
| 116 | 116 |
| 117 // Similar to addDownloadItem above, but adds a DownloadItemController. | 117 // Similar to addDownloadItem above, but adds a DownloadItemController. |
| 118 - (void)add:(DownloadItemController*)download; | 118 - (void)add:(DownloadItemController*)download; |
| 119 | 119 |
| 120 // Remove a download, possibly via clearing browser data. | 120 // Remove a download, possibly via clearing browser data. |
| 121 - (void)remove:(DownloadItemController*)download; | 121 - (void)remove:(DownloadItemController*)download; |
| 122 | 122 |
| 123 // Called by individual item controllers when their downloads are opened. | 123 // Called by individual item controllers when their downloads are opened or |
| 124 - (void)downloadWasOpened:(DownloadItemController*)download; | 124 // shown. |
| 125 - (void)downloadWasOpenedOrShown:(DownloadItemController*)download; |
| 125 | 126 |
| 126 // Return the height of the download shelf. | 127 // Return the height of the download shelf. |
| 127 - (float)height; | 128 - (float)height; |
| 128 | 129 |
| 129 // Re-layouts all download items based on their current state. | 130 // Re-layouts all download items based on their current state. |
| 130 - (void)layoutItems; | 131 - (void)layoutItems; |
| 131 | 132 |
| 132 @end | 133 @end |
| OLD | NEW |