| 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/infobars/extension_infobar_controller.h" | 5 #import "chrome/browser/ui/cocoa/infobars/extension_infobar_controller.h" |
| 6 | 6 |
| 7 #include <cmath> | 7 #include <cmath> |
| 8 | 8 |
| 9 #include "chrome/browser/extensions/extension_host.h" | 9 #include "chrome/browser/extensions/extension_host.h" |
| 10 #include "chrome/browser/extensions/extension_infobar_delegate.h" | 10 #include "chrome/browser/extensions/extension_infobar_delegate.h" |
| 11 #include "chrome/browser/extensions/image_loading_tracker.h" | 11 #include "chrome/browser/extensions/image_loading_tracker.h" |
| 12 #include "chrome/browser/infobars/infobar_tab_helper.h" | 12 #include "chrome/browser/infobars/infobar_tab_helper.h" |
| 13 #import "chrome/browser/ui/cocoa/animatable_view.h" | 13 #import "chrome/browser/ui/cocoa/animatable_view.h" |
| 14 #import "chrome/browser/ui/cocoa/extensions/extension_action_context_menu.h" | 14 #import "chrome/browser/ui/cocoa/extensions/extension_action_context_menu.h" |
| 15 #include "chrome/browser/ui/cocoa/infobars/infobar.h" | 15 #include "chrome/browser/ui/cocoa/infobars/infobar.h" |
| 16 #import "chrome/browser/ui/cocoa/menu_button.h" | 16 #import "chrome/browser/ui/cocoa/menu_button.h" |
| 17 #include "chrome/browser/ui/tab_contents/tab_contents.h" | 17 #include "chrome/browser/ui/tab_contents/tab_contents.h" |
| 18 #include "chrome/common/extensions/extension.h" | 18 #include "chrome/common/extensions/extension.h" |
| 19 #include "chrome/common/extensions/extension_icon_set.h" | 19 #include "chrome/common/extensions/extension_icon_set.h" |
| 20 #include "chrome/common/extensions/extension_resource.h" | 20 #include "chrome/common/extensions/extension_resource.h" |
| 21 #include "content/public/browser/web_contents.h" | 21 #include "content/public/browser/web_contents.h" |
| 22 #include "grit/theme_resources.h" | 22 #include "grit/theme_resources_standard.h" |
| 23 #include "skia/ext/skia_utils_mac.h" | 23 #include "skia/ext/skia_utils_mac.h" |
| 24 #include "ui/base/resource/resource_bundle.h" | 24 #include "ui/base/resource/resource_bundle.h" |
| 25 #include "ui/gfx/canvas.h" | 25 #include "ui/gfx/canvas.h" |
| 26 #include "ui/gfx/image/image.h" | 26 #include "ui/gfx/image/image.h" |
| 27 | 27 |
| 28 namespace { | 28 namespace { |
| 29 const CGFloat kAnimationDuration = 0.12; | 29 const CGFloat kAnimationDuration = 0.12; |
| 30 const CGFloat kBottomBorderHeightPx = 1.0; | 30 const CGFloat kBottomBorderHeightPx = 1.0; |
| 31 const CGFloat kButtonHeightPx = 26.0; | 31 const CGFloat kButtonHeightPx = 26.0; |
| 32 const CGFloat kButtonLeftMarginPx = 2.0; | 32 const CGFloat kButtonLeftMarginPx = 2.0; |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 | 269 |
| 270 InfoBar* ExtensionInfoBarDelegate::CreateInfoBar(InfoBarTabHelper* owner) { | 270 InfoBar* ExtensionInfoBarDelegate::CreateInfoBar(InfoBarTabHelper* owner) { |
| 271 NSWindow* window = | 271 NSWindow* window = |
| 272 [(NSView*)owner->web_contents()->GetContentNativeView() window]; | 272 [(NSView*)owner->web_contents()->GetContentNativeView() window]; |
| 273 ExtensionInfoBarController* controller = | 273 ExtensionInfoBarController* controller = |
| 274 [[ExtensionInfoBarController alloc] initWithDelegate:this | 274 [[ExtensionInfoBarController alloc] initWithDelegate:this |
| 275 owner:owner | 275 owner:owner |
| 276 window:window]; | 276 window:window]; |
| 277 return new InfoBar(controller, this); | 277 return new InfoBar(controller, this); |
| 278 } | 278 } |
| OLD | NEW |