| 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/extensions/extension_popup_controller.h" | 5 #import "chrome/browser/ui/cocoa/extensions/extension_popup_controller.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "chrome/browser/debugger/devtools_window.h" | 9 #include "chrome/browser/debugger/devtools_window.h" |
| 10 #include "chrome/browser/extensions/extension_host.h" | 10 #include "chrome/browser/extensions/extension_host.h" |
| 11 #include "chrome/browser/extensions/extension_process_manager.h" | 11 #include "chrome/browser/extensions/extension_process_manager.h" |
| 12 #include "chrome/browser/profiles/profile.h" | 12 #include "chrome/browser/profiles/profile.h" |
| 13 #include "chrome/browser/ui/browser.h" | 13 #include "chrome/browser/ui/browser.h" |
| 14 #import "chrome/browser/ui/cocoa/browser_window_cocoa.h" | 14 #import "chrome/browser/ui/cocoa/browser_window_cocoa.h" |
| 15 #import "chrome/browser/ui/cocoa/extensions/extension_view_mac.h" | 15 #import "chrome/browser/ui/cocoa/extensions/extension_view_mac.h" |
| 16 #import "chrome/browser/ui/cocoa/info_bubble_window.h" | 16 #import "chrome/browser/ui/cocoa/info_bubble_window.h" |
| 17 #include "chrome/common/chrome_notification_types.h" | 17 #include "chrome/common/chrome_notification_types.h" |
| 18 #include "content/browser/tab_contents/web_contents_view_mac.h" | 18 #include "content/browser/tab_contents/web_contents_view_mac.h" |
| 19 #include "content/public/browser/notification_details.h" | 19 #include "content/public/browser/notification_details.h" |
| 20 #include "content/public/browser/notification_registrar.h" | 20 #include "content/public/browser/notification_registrar.h" |
| 21 #include "content/public/browser/notification_source.h" | 21 #include "content/public/browser/notification_source.h" |
| 22 | 22 |
| 23 using content::RenderViewHost; |
| 24 |
| 23 namespace { | 25 namespace { |
| 24 // The duration for any animations that might be invoked by this controller. | 26 // The duration for any animations that might be invoked by this controller. |
| 25 const NSTimeInterval kAnimationDuration = 0.2; | 27 const NSTimeInterval kAnimationDuration = 0.2; |
| 26 | 28 |
| 27 // There should only be one extension popup showing at one time. Keep a | 29 // There should only be one extension popup showing at one time. Keep a |
| 28 // reference to it here. | 30 // reference to it here. |
| 29 static ExtensionPopupController* gPopup; | 31 static ExtensionPopupController* gPopup; |
| 30 | 32 |
| 31 // Given a value and a rage, clamp the value into the range. | 33 // Given a value and a rage, clamp the value into the range. |
| 32 CGFloat Clamp(CGFloat value, CGFloat min, CGFloat max) { | 34 CGFloat Clamp(CGFloat value, CGFloat min, CGFloat max) { |
| (...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 return minSize; | 394 return minSize; |
| 393 } | 395 } |
| 394 | 396 |
| 395 // Private (TestingAPI) | 397 // Private (TestingAPI) |
| 396 + (NSSize)maxPopupSize { | 398 + (NSSize)maxPopupSize { |
| 397 NSSize maxSize = {ExtensionViewMac::kMaxWidth, ExtensionViewMac::kMaxHeight}; | 399 NSSize maxSize = {ExtensionViewMac::kMaxWidth, ExtensionViewMac::kMaxHeight}; |
| 398 return maxSize; | 400 return maxSize; |
| 399 } | 401 } |
| 400 | 402 |
| 401 @end | 403 @end |
| OLD | NEW |