OLD | NEW |
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 #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/bundle_locations.h" | 7 #include "base/mac/bundle_locations.h" |
8 #include "base/mac/mac_util.h" | |
9 #include "base/strings/sys_string_conversions.h" | 8 #include "base/strings/sys_string_conversions.h" |
10 #include "chrome/browser/download/download_stats.h" | 9 #include "chrome/browser/download/download_stats.h" |
11 #include "chrome/browser/profiles/profile.h" | 10 #include "chrome/browser/profiles/profile.h" |
12 #include "chrome/browser/themes/theme_service.h" | 11 #include "chrome/browser/themes/theme_service.h" |
13 #include "chrome/browser/themes/theme_service_factory.h" | 12 #include "chrome/browser/themes/theme_service_factory.h" |
14 #include "chrome/browser/ui/browser.h" | 13 #include "chrome/browser/ui/browser.h" |
15 #include "chrome/browser/ui/chrome_pages.h" | 14 #include "chrome/browser/ui/chrome_pages.h" |
16 #import "chrome/browser/ui/cocoa/animatable_view.h" | 15 #import "chrome/browser/ui/cocoa/animatable_view.h" |
17 #include "chrome/browser/ui/cocoa/browser_window_cocoa.h" | 16 #include "chrome/browser/ui/cocoa/browser_window_cocoa.h" |
18 #import "chrome/browser/ui/cocoa/browser_window_controller.h" | 17 #import "chrome/browser/ui/cocoa/browser_window_controller.h" |
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
505 } | 504 } |
506 | 505 |
507 // Set the tracking off to create a new tracking area for the control. | 506 // Set the tracking off to create a new tracking area for the control. |
508 // When changing the bounds/frame on a HoverButton, the tracking isn't updated | 507 // When changing the bounds/frame on a HoverButton, the tracking isn't updated |
509 // correctly, it needs to be turned off and back on. | 508 // correctly, it needs to be turned off and back on. |
510 [hoverCloseButton_ setTrackingEnabled:NO]; | 509 [hoverCloseButton_ setTrackingEnabled:NO]; |
511 [hoverCloseButton_ setFrame:bounds]; | 510 [hoverCloseButton_ setFrame:bounds]; |
512 [hoverCloseButton_ setTrackingEnabled:YES]; | 511 [hoverCloseButton_ setTrackingEnabled:YES]; |
513 } | 512 } |
514 @end | 513 @end |
OLD | NEW |