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 #import "chrome/browser/ui/cocoa/download/download_item_controller.h" | 5 #import "chrome/browser/ui/cocoa/download/download_item_controller.h" |
6 | 6 |
7 #include "base/mac/mac_util.h" | 7 #include "base/mac/mac_util.h" |
8 #include "base/metrics/histogram.h" | 8 #include "base/metrics/histogram.h" |
9 #include "base/string16.h" | 9 #include "base/string16.h" |
10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
11 #include "base/sys_string_conversions.h" | 11 #include "base/sys_string_conversions.h" |
12 #include "base/utf_string_conversions.h" | 12 #include "base/utf_string_conversions.h" |
13 #include "chrome/browser/download/download_item.h" | |
14 #include "chrome/browser/download/download_item_model.h" | 13 #include "chrome/browser/download/download_item_model.h" |
15 #include "chrome/browser/download/download_shelf_context_menu.h" | 14 #include "chrome/browser/download/download_shelf_context_menu.h" |
16 #include "chrome/browser/download/download_util.h" | 15 #include "chrome/browser/download/download_util.h" |
17 #import "chrome/browser/themes/theme_service.h" | 16 #import "chrome/browser/themes/theme_service.h" |
18 #import "chrome/browser/ui/cocoa/download/download_item_button.h" | 17 #import "chrome/browser/ui/cocoa/download/download_item_button.h" |
19 #import "chrome/browser/ui/cocoa/download/download_item_cell.h" | 18 #import "chrome/browser/ui/cocoa/download/download_item_cell.h" |
20 #include "chrome/browser/ui/cocoa/download/download_item_mac.h" | 19 #include "chrome/browser/ui/cocoa/download/download_item_mac.h" |
21 #import "chrome/browser/ui/cocoa/download/download_shelf_controller.h" | 20 #import "chrome/browser/ui/cocoa/download/download_shelf_controller.h" |
22 #import "chrome/browser/ui/cocoa/themed_window.h" | 21 #import "chrome/browser/ui/cocoa/themed_window.h" |
23 #import "chrome/browser/ui/cocoa/ui_localizer.h" | 22 #import "chrome/browser/ui/cocoa/ui_localizer.h" |
| 23 #include "content/browser/download/download_item.h" |
24 #include "grit/generated_resources.h" | 24 #include "grit/generated_resources.h" |
25 #include "grit/theme_resources.h" | 25 #include "grit/theme_resources.h" |
26 #include "third_party/GTM/AppKit/GTMUILocalizerAndLayoutTweaker.h" | 26 #include "third_party/GTM/AppKit/GTMUILocalizerAndLayoutTweaker.h" |
27 #include "ui/base/l10n/l10n_util_mac.h" | 27 #include "ui/base/l10n/l10n_util_mac.h" |
28 #include "ui/base/resource/resource_bundle.h" | 28 #include "ui/base/resource/resource_bundle.h" |
29 #include "ui/base/text/text_elider.h" | 29 #include "ui/base/text/text_elider.h" |
30 #include "ui/gfx/image/image.h" | 30 #include "ui/gfx/image/image.h" |
31 | 31 |
32 namespace { | 32 namespace { |
33 | 33 |
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
410 [sender setTitle:l10n_util::GetNSStringWithFixup( | 410 [sender setTitle:l10n_util::GetNSStringWithFixup( |
411 IDS_DOWNLOAD_MENU_PAUSE_ITEM)]; | 411 IDS_DOWNLOAD_MENU_PAUSE_ITEM)]; |
412 } else { | 412 } else { |
413 [sender setTitle:l10n_util::GetNSStringWithFixup( | 413 [sender setTitle:l10n_util::GetNSStringWithFixup( |
414 IDS_DOWNLOAD_MENU_RESUME_ITEM)]; | 414 IDS_DOWNLOAD_MENU_RESUME_ITEM)]; |
415 } | 415 } |
416 menuBridge_->ExecuteCommand(DownloadShelfContextMenuMac::TOGGLE_PAUSE); | 416 menuBridge_->ExecuteCommand(DownloadShelfContextMenuMac::TOGGLE_PAUSE); |
417 } | 417 } |
418 | 418 |
419 @end | 419 @end |
OLD | NEW |