| 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/infobars/extension_infobar_gtk.h" | 5 #include "chrome/browser/ui/gtk/infobars/extension_infobar_gtk.h" |
| 6 | 6 |
| 7 #include "base/debug/trace_event.h" | 7 #include "base/debug/trace_event.h" |
| 8 #include "chrome/browser/extensions/extension_context_menu_model.h" | 8 #include "chrome/browser/extensions/extension_context_menu_model.h" |
| 9 #include "chrome/browser/extensions/extension_host.h" | 9 #include "chrome/browser/extensions/extension_host.h" |
| 10 #include "chrome/browser/extensions/image_loader.h" | 10 #include "chrome/browser/extensions/image_loader.h" |
| 11 #include "chrome/browser/platform_util.h" | 11 #include "chrome/browser/platform_util.h" |
| 12 #include "chrome/browser/ui/gtk/browser_window_gtk.h" | 12 #include "chrome/browser/ui/gtk/browser_window_gtk.h" |
| 13 #include "chrome/browser/ui/gtk/custom_button.h" | 13 #include "chrome/browser/ui/gtk/custom_button.h" |
| 14 #include "chrome/browser/ui/gtk/gtk_chrome_button.h" | 14 #include "chrome/browser/ui/gtk/gtk_chrome_button.h" |
| 15 #include "chrome/browser/ui/gtk/gtk_util.h" | 15 #include "chrome/browser/ui/gtk/gtk_util.h" |
| 16 #include "chrome/browser/ui/gtk/infobars/infobar_container_gtk.h" | 16 #include "chrome/browser/ui/gtk/infobars/infobar_container_gtk.h" |
| 17 #include "chrome/common/extensions/extension.h" | |
| 18 #include "chrome/common/extensions/extension_constants.h" | 17 #include "chrome/common/extensions/extension_constants.h" |
| 19 #include "chrome/common/extensions/extension_icon_set.h" | 18 #include "chrome/common/extensions/extension_icon_set.h" |
| 20 #include "chrome/common/extensions/manifest_handlers/icons_handler.h" | 19 #include "chrome/common/extensions/manifest_handlers/icons_handler.h" |
| 21 #include "content/public/browser/render_view_host.h" | 20 #include "content/public/browser/render_view_host.h" |
| 22 #include "content/public/browser/render_widget_host_view.h" | 21 #include "content/public/browser/render_widget_host_view.h" |
| 22 #include "extensions/common/extension.h" |
| 23 #include "extensions/common/extension_resource.h" | 23 #include "extensions/common/extension_resource.h" |
| 24 #include "grit/theme_resources.h" | 24 #include "grit/theme_resources.h" |
| 25 #include "ui/base/gtk/gtk_signal_registrar.h" | 25 #include "ui/base/gtk/gtk_signal_registrar.h" |
| 26 #include "ui/base/resource/resource_bundle.h" | 26 #include "ui/base/resource/resource_bundle.h" |
| 27 #include "ui/gfx/canvas.h" | 27 #include "ui/gfx/canvas.h" |
| 28 #include "ui/gfx/gtk_util.h" | 28 #include "ui/gfx/gtk_util.h" |
| 29 #include "ui/gfx/image/image.h" | 29 #include "ui/gfx/image/image.h" |
| 30 | 30 |
| 31 | 31 |
| 32 // ExtensionInfoBarDelegate --------------------------------------------------- | 32 // ExtensionInfoBarDelegate --------------------------------------------------- |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 gboolean ExtensionInfoBarGtk::OnExpose(GtkWidget* sender, | 240 gboolean ExtensionInfoBarGtk::OnExpose(GtkWidget* sender, |
| 241 GdkEventExpose* event) { | 241 GdkEventExpose* event) { |
| 242 TRACE_EVENT0("ui::gtk", "ExtensionInfoBarGtk::OnExpose"); | 242 TRACE_EVENT0("ui::gtk", "ExtensionInfoBarGtk::OnExpose"); |
| 243 | 243 |
| 244 // We also need to draw our infobar arrows over the renderer. | 244 // We also need to draw our infobar arrows over the renderer. |
| 245 static_cast<InfoBarContainerGtk*>(container())-> | 245 static_cast<InfoBarContainerGtk*>(container())-> |
| 246 PaintInfobarBitsOn(sender, event, this); | 246 PaintInfobarBitsOn(sender, event, this); |
| 247 | 247 |
| 248 return FALSE; | 248 return FALSE; |
| 249 } | 249 } |
| OLD | NEW |