Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(761)

Unified Diff: ui/base/gtk/gtk_compat.h

Issue 8588068: GTK: Create the start of a compatibility header wrapping deprecated methods. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebase to ToT and remove views/ cleanups. Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/tab_contents/web_drag_source_gtk.cc ('k') | ui/base/gtk/gtk_expanded_container.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/gtk/gtk_compat.h
diff --git a/ui/base/gtk/gtk_compat.h b/ui/base/gtk/gtk_compat.h
new file mode 100644
index 0000000000000000000000000000000000000000..e6c119a286e804f2ca6d8cf93a5e78d9559ce252
--- /dev/null
+++ b/ui/base/gtk/gtk_compat.h
@@ -0,0 +1,39 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef UI_BASE_GTK_GTK_COMPAT_H_
+#define UI_BASE_GTK_GTK_COMPAT_H_
+#pragma once
+
+#include <gtk/gtk.h>
+
+// Google Chrome must depend on GTK 2.18, at least until the next LTS drops
+// (and we might have to extend which version of GTK we want to target due to
+// RHEL). To make our porting job for GTK3 easier, we define all the methods
+// that replace deprecated APIs in this file and then include it everywhere.
+//
+// This file is organized first by version, and then with each version,
+// alphabetically by method.
+
+#if !GTK_CHECK_VERSION(2, 20, 0)
+inline gboolean gtk_widget_get_realized(GtkWidget* widget) {
+ return GTK_WIDGET_REALIZED(widget);
+}
+
+inline gboolean gtk_widget_is_toplevel(GtkWidget* widget) {
+ return GTK_WIDGET_TOPLEVEL(widget);
+}
+#endif
+
+#if !GTK_CHECK_VERSION(2, 24, 0)
+inline void gdk_pixmap_get_size(GdkPixmap* pixmap, gint* width, gint* height) {
+ gdk_drawable_get_size(GDK_DRAWABLE(pixmap), width, height);
+}
+
+inline GdkScreen* gdk_window_get_screen(GdkWindow* window) {
+ return gdk_drawable_get_screen(GDK_DRAWABLE(window));
+}
+#endif
+
+#endif // UI_BASE_GTK_GTK_COMPAT_H_
« no previous file with comments | « content/browser/tab_contents/web_drag_source_gtk.cc ('k') | ui/base/gtk/gtk_expanded_container.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698