Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(488)

Side by Side Diff: chrome/browser/ui/cocoa/download/download_item_mac.h

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 #ifndef CHROME_BROWSER_UI_COCOA_DOWNLOAD_DOWNLOAD_ITEM_MAC_H_ 5 #ifndef CHROME_BROWSER_UI_COCOA_DOWNLOAD_DOWNLOAD_ITEM_MAC_H_
6 #define CHROME_BROWSER_UI_COCOA_DOWNLOAD_DOWNLOAD_ITEM_MAC_H_ 6 #define CHROME_BROWSER_UI_COCOA_DOWNLOAD_DOWNLOAD_ITEM_MAC_H_
7 7
8 #import <Cocoa/Cocoa.h> 8 #import <Cocoa/Cocoa.h>
9 9
10 #include "base/task/cancelable_task_tracker.h" 10 #include "base/task/cancelable_task_tracker.h"
(...skipping 11 matching lines...) Expand all
22 // A class that bridges the visible mac download items to chromium's download 22 // A class that bridges the visible mac download items to chromium's download
23 // model. The owning object (DownloadItemController) must explicitly call 23 // model. The owning object (DownloadItemController) must explicitly call
24 // |LoadIcon| if it wants to display the icon associated with this download. 24 // |LoadIcon| if it wants to display the icon associated with this download.
25 25
26 class DownloadItemMac : content::DownloadItem::Observer { 26 class DownloadItemMac : content::DownloadItem::Observer {
27 public: 27 public:
28 DownloadItemMac(content::DownloadItem* download, 28 DownloadItemMac(content::DownloadItem* download,
29 DownloadItemController* controller); 29 DownloadItemController* controller);
30 30
31 // Destructor. 31 // Destructor.
32 virtual ~DownloadItemMac(); 32 ~DownloadItemMac() override;
33 33
34 // content::DownloadItem::Observer implementation 34 // content::DownloadItem::Observer implementation
35 virtual void OnDownloadUpdated(content::DownloadItem* download) override; 35 void OnDownloadUpdated(content::DownloadItem* download) override;
36 virtual void OnDownloadOpened(content::DownloadItem* download) override; 36 void OnDownloadOpened(content::DownloadItem* download) override;
37 virtual void OnDownloadDestroyed(content::DownloadItem* download) override; 37 void OnDownloadDestroyed(content::DownloadItem* download) override;
38 38
39 DownloadItemModel* download_model() { return &download_model_; } 39 DownloadItemModel* download_model() { return &download_model_; }
40 40
41 // Asynchronous icon loading support. 41 // Asynchronous icon loading support.
42 void LoadIcon(); 42 void LoadIcon();
43 43
44 private: 44 private:
45 // Callback for asynchronous icon loading. 45 // Callback for asynchronous icon loading.
46 void OnExtractIconComplete(gfx::Image* icon_bitmap); 46 void OnExtractIconComplete(gfx::Image* icon_bitmap);
47 47
48 // The download item model we represent. 48 // The download item model we represent.
49 DownloadItemModel download_model_; 49 DownloadItemModel download_model_;
50 50
51 // The objective-c controller object. 51 // The objective-c controller object.
52 DownloadItemController* item_controller_; // weak, owns us. 52 DownloadItemController* item_controller_; // weak, owns us.
53 53
54 // For canceling an in progress icon request. 54 // For canceling an in progress icon request.
55 base::CancelableTaskTracker cancelable_task_tracker_; 55 base::CancelableTaskTracker cancelable_task_tracker_;
56 56
57 // Stores the last known path where the file will be saved. 57 // Stores the last known path where the file will be saved.
58 base::FilePath lastFilePath_; 58 base::FilePath lastFilePath_;
59 59
60 DISALLOW_COPY_AND_ASSIGN(DownloadItemMac); 60 DISALLOW_COPY_AND_ASSIGN(DownloadItemMac);
61 }; 61 };
62 62
63 #endif // CHROME_BROWSER_UI_COCOA_DOWNLOAD_DOWNLOAD_ITEM_MAC_H_ 63 #endif // CHROME_BROWSER_UI_COCOA_DOWNLOAD_DOWNLOAD_ITEM_MAC_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698