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

Side by Side Diff: chrome/browser/download/download_shelf.h

Issue 3179017: FBTF: Remove "obviously" unneeded standard C++ library #includes. (Closed)
Patch Set: fixed mac oopsie Created 10 years, 4 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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_DOWNLOAD_DOWNLOAD_SHELF_H_ 5 #ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_SHELF_H_
6 #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_SHELF_H_ 6 #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_SHELF_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string>
10
11 #include "app/menus/simple_menu_model.h" 9 #include "app/menus/simple_menu_model.h"
12 #include "base/basictypes.h" 10 #include "base/basictypes.h"
13 #include "base/logging.h" 11 #include "base/logging.h"
14 #include "base/scoped_ptr.h" 12 #include "base/scoped_ptr.h"
13 #include "base/string16.h"
15 14
16 class BaseDownloadItemModel; 15 class BaseDownloadItemModel;
17 class Browser; 16 class Browser;
18 class DownloadItem; 17 class DownloadItem;
19 18
20 // DownloadShelf is an interface for platform-specific download shelf views. 19 // DownloadShelf is an interface for platform-specific download shelf views.
21 class DownloadShelf { 20 class DownloadShelf {
22 public: 21 public:
23 virtual ~DownloadShelf() { } 22 virtual ~DownloadShelf() { }
24 23
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 private: 83 private:
85 // We show slightly different menus if the download is in progress vs. if the 84 // We show slightly different menus if the download is in progress vs. if the
86 // download has finished. 85 // download has finished.
87 scoped_ptr<menus::SimpleMenuModel> in_progress_download_menu_model_; 86 scoped_ptr<menus::SimpleMenuModel> in_progress_download_menu_model_;
88 scoped_ptr<menus::SimpleMenuModel> finished_download_menu_model_; 87 scoped_ptr<menus::SimpleMenuModel> finished_download_menu_model_;
89 88
90 DISALLOW_COPY_AND_ASSIGN(DownloadShelfContextMenu); 89 DISALLOW_COPY_AND_ASSIGN(DownloadShelfContextMenu);
91 }; 90 };
92 91
93 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_SHELF_H_ 92 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_SHELF_H_
OLDNEW
« no previous file with comments | « chrome/browser/download/download_file_manager.h ('k') | chrome/browser/download/download_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698