| 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/gtk_theme_service.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/browser/renderer_host/render_view_host.h" | 24 #include "content/browser/renderer_host/render_view_host.h" |
| 25 #include "content/public/browser/notification_details.h" | 25 #include "content/public/browser/notification_details.h" |
| 26 #include "content/public/browser/notification_source.h" | 26 #include "content/public/browser/notification_source.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 ExtensionPopupGtk* ExtensionPopupGtk::current_extension_popup_ = NULL; | 30 ExtensionPopupGtk* ExtensionPopupGtk::current_extension_popup_ = NULL; |
| 31 | 31 |
| 32 // The minimum/maximum dimensions of the extension popup. | 32 // The minimum/maximum dimensions of the extension popup. |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 BubbleGtk::ArrowLocationGtk arrow_location = | 177 BubbleGtk::ArrowLocationGtk arrow_location = |
| 178 !base::i18n::IsRTL() ? | 178 !base::i18n::IsRTL() ? |
| 179 BubbleGtk::ARROW_LOCATION_TOP_RIGHT : | 179 BubbleGtk::ARROW_LOCATION_TOP_RIGHT : |
| 180 BubbleGtk::ARROW_LOCATION_TOP_LEFT; | 180 BubbleGtk::ARROW_LOCATION_TOP_LEFT; |
| 181 bubble_ = BubbleGtk::Show(anchor_, | 181 bubble_ = BubbleGtk::Show(anchor_, |
| 182 NULL, | 182 NULL, |
| 183 host_->view()->native_view(), | 183 host_->view()->native_view(), |
| 184 arrow_location, | 184 arrow_location, |
| 185 false, // match_system_theme | 185 false, // match_system_theme |
| 186 !being_inspected_, // grab_input | 186 !being_inspected_, // grab_input |
| 187 GtkThemeService::GetFrom(browser_->profile()), | 187 ThemeServiceGtk::GetFrom(browser_->profile()), |
| 188 this); | 188 this); |
| 189 } | 189 } |
| 190 | 190 |
| 191 void ExtensionPopupGtk::DestroyPopupWithoutResult() { | 191 void ExtensionPopupGtk::DestroyPopupWithoutResult() { |
| 192 DestroyPopup(); | 192 DestroyPopup(); |
| 193 } | 193 } |
| 194 | 194 |
| 195 gfx::Rect ExtensionPopupGtk::GetViewBounds() { | 195 gfx::Rect ExtensionPopupGtk::GetViewBounds() { |
| 196 GtkAllocation allocation; | 196 GtkAllocation allocation; |
| 197 gtk_widget_get_allocation(host_->view()->native_view(), &allocation); | 197 gtk_widget_get_allocation(host_->view()->native_view(), &allocation); |
| 198 return gfx::Rect(allocation); | 198 return gfx::Rect(allocation); |
| 199 } | 199 } |
| OLD | NEW |