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 #ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_SHELF_CONTEXT_MENU_H_ | 5 #ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_SHELF_CONTEXT_MENU_H_ |
6 #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_SHELF_CONTEXT_MENU_H_ | 6 #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_SHELF_CONTEXT_MENU_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 std::unique_ptr<ui::SimpleMenuModel> in_progress_download_paused_menu_model_; | 69 std::unique_ptr<ui::SimpleMenuModel> in_progress_download_paused_menu_model_; |
70 std::unique_ptr<ui::SimpleMenuModel> finished_download_menu_model_; | 70 std::unique_ptr<ui::SimpleMenuModel> finished_download_menu_model_; |
71 std::unique_ptr<ui::SimpleMenuModel> interrupted_download_menu_model_; | 71 std::unique_ptr<ui::SimpleMenuModel> interrupted_download_menu_model_; |
72 std::unique_ptr<ui::SimpleMenuModel> maybe_malicious_download_menu_model_; | 72 std::unique_ptr<ui::SimpleMenuModel> maybe_malicious_download_menu_model_; |
73 std::unique_ptr<ui::SimpleMenuModel> malicious_download_menu_model_; | 73 std::unique_ptr<ui::SimpleMenuModel> malicious_download_menu_model_; |
74 | 74 |
75 // Information source. | 75 // Information source. |
76 content::DownloadItem* download_item_; | 76 content::DownloadItem* download_item_; |
77 std::unique_ptr<DownloadCommands> download_commands_; | 77 std::unique_ptr<DownloadCommands> download_commands_; |
78 | 78 |
79 #if defined(OS_WIN) | |
80 bool is_adobe_pdf_reader_up_to_date_; | |
81 #endif | |
82 | |
83 DISALLOW_COPY_AND_ASSIGN(DownloadShelfContextMenu); | 79 DISALLOW_COPY_AND_ASSIGN(DownloadShelfContextMenu); |
84 }; | 80 }; |
85 | 81 |
86 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_SHELF_CONTEXT_MENU_H_ | 82 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_SHELF_CONTEXT_MENU_H_ |
OLD | NEW |