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/public/browser/notification_details.h" | 18 #include "content/public/browser/notification_details.h" |
19 #include "content/public/browser/notification_registrar.h" | 19 #include "content/public/browser/notification_registrar.h" |
20 #include "content/public/browser/notification_source.h" | 20 #include "content/public/browser/notification_source.h" |
21 #include "ui/base/cocoa/window_size_constants.h" | 21 #include "ui/base/cocoa/window_size_constants.h" |
22 | 22 |
23 using content::RenderViewHost; | 23 using content::RenderViewHost; |
24 using extensions::ExtensionHost; | |
Peter Kasting
2012/07/26 18:13:48
Nit: Don't do this -- we try to avoid using statem
| |
24 | 25 |
25 namespace { | 26 namespace { |
26 // The duration for any animations that might be invoked by this controller. | 27 // The duration for any animations that might be invoked by this controller. |
27 const NSTimeInterval kAnimationDuration = 0.2; | 28 const NSTimeInterval kAnimationDuration = 0.2; |
28 | 29 |
29 // There should only be one extension popup showing at one time. Keep a | 30 // There should only be one extension popup showing at one time. Keep a |
30 // reference to it here. | 31 // reference to it here. |
31 static ExtensionPopupController* gPopup; | 32 static ExtensionPopupController* gPopup; |
32 | 33 |
33 // Given a value and a rage, clamp the value into the range. | 34 // Given a value and a rage, clamp the value into the range. |
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
370 return minSize; | 371 return minSize; |
371 } | 372 } |
372 | 373 |
373 // Private (TestingAPI) | 374 // Private (TestingAPI) |
374 + (NSSize)maxPopupSize { | 375 + (NSSize)maxPopupSize { |
375 NSSize maxSize = {ExtensionViewMac::kMaxWidth, ExtensionViewMac::kMaxHeight}; | 376 NSSize maxSize = {ExtensionViewMac::kMaxWidth, ExtensionViewMac::kMaxHeight}; |
376 return maxSize; | 377 return maxSize; |
377 } | 378 } |
378 | 379 |
379 @end | 380 @end |
OLD | NEW |