| OLD | NEW |
| 1 // Copyright (c) 2010 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 #import "chrome/browser/ui/cocoa/download/download_shelf_controller.h" | 5 #import "chrome/browser/ui/cocoa/download/download_shelf_controller.h" |
| 6 | 6 |
| 7 #include "base/mac/mac_util.h" | 7 #include "base/mac/mac_util.h" |
| 8 #include "base/sys_string_conversions.h" | 8 #include "base/sys_string_conversions.h" |
| 9 #include "chrome/browser/download/download_item.h" | 9 #include "chrome/browser/download/download_item.h" |
| 10 #include "chrome/browser/download/download_manager.h" | 10 #include "chrome/browser/download/download_manager.h" |
| 11 #include "chrome/browser/profiles/profile.h" | 11 #include "chrome/browser/profiles/profile.h" |
| 12 #include "chrome/browser/themes/browser_theme_provider.h" | 12 #include "chrome/browser/themes/browser_theme_provider.h" |
| 13 #include "chrome/browser/ui/browser.h" | 13 #include "chrome/browser/ui/browser.h" |
| 14 #import "chrome/browser/ui/cocoa/animatable_view.h" | 14 #import "chrome/browser/ui/cocoa/animatable_view.h" |
| 15 #include "chrome/browser/ui/cocoa/browser_window_cocoa.h" | 15 #include "chrome/browser/ui/cocoa/browser_window_cocoa.h" |
| 16 #import "chrome/browser/ui/cocoa/browser_window_controller.h" | 16 #import "chrome/browser/ui/cocoa/browser_window_controller.h" |
| 17 #include "chrome/browser/ui/cocoa/download/download_item_controller.h" | 17 #include "chrome/browser/ui/cocoa/download/download_item_controller.h" |
| 18 #include "chrome/browser/ui/cocoa/download/download_shelf_mac.h" | 18 #include "chrome/browser/ui/cocoa/download/download_shelf_mac.h" |
| 19 #import "chrome/browser/ui/cocoa/download/download_shelf_view.h" | 19 #import "chrome/browser/ui/cocoa/download/download_shelf_view.h" |
| 20 #import "chrome/browser/ui/cocoa/hyperlink_button_cell.h" | 20 #import "chrome/browser/ui/cocoa/hyperlink_button_cell.h" |
| 21 #include "grit/generated_resources.h" | 21 #include "grit/generated_resources.h" |
| 22 #include "grit/theme_resources.h" | 22 #include "grit/theme_resources.h" |
| 23 #import "third_party/GTM/AppKit/GTMNSAnimation+Duration.h" | 23 #import "third_party/GTM/AppKit/GTMNSAnimation+Duration.h" |
| 24 #include "ui/base/l10n/l10n_util.h" | 24 #include "ui/base/l10n/l10n_util.h" |
| 25 #include "ui/base/resource/resource_bundle.h" | 25 #include "ui/base/resource/resource_bundle.h" |
| 26 #include "ui/gfx/image.h" |
| 26 | 27 |
| 27 // Download shelf autoclose behavior: | 28 // Download shelf autoclose behavior: |
| 28 // | 29 // |
| 29 // The download shelf autocloses if all of this is true: | 30 // The download shelf autocloses if all of this is true: |
| 30 // 1) An item on the shelf has just been opened. | 31 // 1) An item on the shelf has just been opened. |
| 31 // 2) All remaining items on the shelf have been opened in the past. | 32 // 2) All remaining items on the shelf have been opened in the past. |
| 32 // 3) The mouse leaves the shelf and remains off the shelf for 5 seconds. | 33 // 3) The mouse leaves the shelf and remains off the shelf for 5 seconds. |
| 33 // | 34 // |
| 34 // If the mouse re-enters the shelf within the 5 second grace period, the | 35 // If the mouse re-enters the shelf within the 5 second grace period, the |
| 35 // autoclose is canceled. An autoclose can only be scheduled in response to a | 36 // autoclose is canceled. An autoclose can only be scheduled in response to a |
| (...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 418 selector:@selector(hide:) | 419 selector:@selector(hide:) |
| 419 object:self]; | 420 object:self]; |
| 420 | 421 |
| 421 if (trackingArea_.get()) { | 422 if (trackingArea_.get()) { |
| 422 [[self view] removeTrackingArea:trackingArea_]; | 423 [[self view] removeTrackingArea:trackingArea_]; |
| 423 trackingArea_.reset(nil); | 424 trackingArea_.reset(nil); |
| 424 } | 425 } |
| 425 } | 426 } |
| 426 | 427 |
| 427 @end | 428 @end |
| OLD | NEW |