| 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 #include "chrome/browser/ui/gtk/extensions/extension_popup_gtk.h" | 5 #include "chrome/browser/ui/gtk/extensions/extension_popup_gtk.h" |
| 6 | 6 |
| 7 #include <gtk/gtk.h> | 7 #include <gtk/gtk.h> |
| 8 | 8 |
| 9 #include <algorithm> | 9 #include <algorithm> |
| 10 | 10 |
| 11 #include "base/bind.h" | 11 #include "base/bind.h" |
| 12 #include "base/bind_helpers.h" | 12 #include "base/bind_helpers.h" |
| 13 #include "base/callback.h" | 13 #include "base/callback.h" |
| 14 #include "base/i18n/rtl.h" | 14 #include "base/i18n/rtl.h" |
| 15 #include "base/message_loop.h" | 15 #include "base/message_loop.h" |
| 16 #include "chrome/browser/debugger/devtools_window.h" | 16 #include "chrome/browser/debugger/devtools_window.h" |
| 17 #include "chrome/browser/extensions/extension_host.h" | 17 #include "chrome/browser/extensions/extension_host.h" |
| 18 #include "chrome/browser/extensions/extension_process_manager.h" | 18 #include "chrome/browser/extensions/extension_process_manager.h" |
| 19 #include "chrome/browser/profiles/profile.h" | 19 #include "chrome/browser/profiles/profile.h" |
| 20 #include "chrome/browser/ui/browser.h" | 20 #include "chrome/browser/ui/browser.h" |
| 21 #include "chrome/browser/ui/browser_window.h" | 21 #include "chrome/browser/ui/browser_window.h" |
| 22 #include "chrome/browser/ui/gtk/theme_service_gtk.h" | 22 #include "chrome/browser/ui/gtk/theme_service_gtk.h" |
| 23 #include "chrome/common/chrome_notification_types.h" | 23 #include "chrome/common/chrome_notification_types.h" |
| 24 #include "content/public/browser/notification_details.h" | 24 #include "content/public/browser/notification_details.h" |
| 25 #include "content/public/browser/notification_source.h" | 25 #include "content/public/browser/notification_source.h" |
| 26 #include "content/public/browser/render_view_host.h" | 26 #include "content/public/browser/render_view_host.h" |
| 27 #include "content/public/browser/render_widget_host_view.h" | 27 #include "content/public/browser/render_widget_host_view.h" |
| 28 #include "googleurl/src/gurl.h" | 28 #include "googleurl/src/gurl.h" |
| 29 | 29 |
| 30 using content::RenderViewHost; |
| 31 |
| 30 ExtensionPopupGtk* ExtensionPopupGtk::current_extension_popup_ = NULL; | 32 ExtensionPopupGtk* ExtensionPopupGtk::current_extension_popup_ = NULL; |
| 31 | 33 |
| 32 // The minimum/maximum dimensions of the extension popup. | 34 // The minimum/maximum dimensions of the extension popup. |
| 33 // The minimum is just a little larger than the size of a browser action button. | 35 // The minimum is just a little larger than the size of a browser action button. |
| 34 // The maximum is an arbitrary number that should be smaller than most screens. | 36 // The maximum is an arbitrary number that should be smaller than most screens. |
| 35 const int ExtensionPopupGtk::kMinWidth = 25; | 37 const int ExtensionPopupGtk::kMinWidth = 25; |
| 36 const int ExtensionPopupGtk::kMinHeight = 25; | 38 const int ExtensionPopupGtk::kMinHeight = 25; |
| 37 const int ExtensionPopupGtk::kMaxWidth = 800; | 39 const int ExtensionPopupGtk::kMaxWidth = 800; |
| 38 const int ExtensionPopupGtk::kMaxHeight = 600; | 40 const int ExtensionPopupGtk::kMaxHeight = 600; |
| 39 | 41 |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 | 192 |
| 191 void ExtensionPopupGtk::DestroyPopupWithoutResult() { | 193 void ExtensionPopupGtk::DestroyPopupWithoutResult() { |
| 192 DestroyPopup(); | 194 DestroyPopup(); |
| 193 } | 195 } |
| 194 | 196 |
| 195 gfx::Rect ExtensionPopupGtk::GetViewBounds() { | 197 gfx::Rect ExtensionPopupGtk::GetViewBounds() { |
| 196 GtkAllocation allocation; | 198 GtkAllocation allocation; |
| 197 gtk_widget_get_allocation(host_->view()->native_view(), &allocation); | 199 gtk_widget_get_allocation(host_->view()->native_view(), &allocation); |
| 198 return gfx::Rect(allocation); | 200 return gfx::Rect(allocation); |
| 199 } | 201 } |
| OLD | NEW |