summaryrefslogtreecommitdiffstats
path: root/chrome/common/gtk_util.h
diff options
context:
space:
mode:
authorerg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-15 23:53:46 +0000
committererg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-15 23:53:46 +0000
commit796de69f454b9de23ce143687fdbd76a9b3c9d54 (patch)
tree555b4389d14e8fbe10805de9013fcb1c5763ef5a /chrome/common/gtk_util.h
parentcd12f48e108d6be67685dfbd7ded93fd35dff698 (diff)
downloadchromium_src-796de69f454b9de23ce143687fdbd76a9b3c9d54.zip
chromium_src-796de69f454b9de23ce143687fdbd76a9b3c9d54.tar.gz
chromium_src-796de69f454b9de23ce143687fdbd76a9b3c9d54.tar.bz2
Reverts the previous two commits. (r13812 and r13811).
Review URL: http://codereview.chromium.org/75023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@13813 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/gtk_util.h')
-rw-r--r--chrome/common/gtk_util.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/chrome/common/gtk_util.h b/chrome/common/gtk_util.h
deleted file mode 100644
index ff3dc5c..0000000
--- a/chrome/common/gtk_util.h
+++ /dev/null
@@ -1,41 +0,0 @@
-// Copyright (c) 2009 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 CHROME_COMMON_GTK_UTIL_H_
-#define CHROME_COMMON_GTK_UTIL_H_
-
-#include <gtk/gtk.h>
-
-#include "webkit/glue/window_open_disposition.h"
-
-typedef struct _GdkPixbuf GdkPixbuf;
-typedef struct _GtkWidget GtkWidget;
-class SkBitmap;
-
-namespace event_utils {
-
-// Translates event flags into what kind of disposition they represent.
-// For example, a middle click would mean to open a background tab.
-// event_flags are the state in the GdkEvent structure.
-WindowOpenDisposition DispositionFromEventFlags(guint state);
-
-} // namespace event_utils
-
-namespace gfx {
-
-// Convert and copy a SkBitmap to a GdkPixbuf. NOTE: this uses BGRAToRGBA, so
-// it is an expensive operation.
-GdkPixbuf* GdkPixbufFromSkBitmap(const SkBitmap* bitmap);
-
-// Create a GtkBin with |child| as its child widget. This bin will paint a
-// border of color |color| with the sizes specified in pixels.
-GtkWidget* CreateGtkBorderBin(GtkWidget* child, const GdkColor* color,
- int top, int bottom, int left, int right);
-
-// Remove all children from this container.
-void RemoveAllChildren(GtkWidget* container);
-
-} // namespace gfx
-
-#endif // CHROME_COMMON_GTK_UTIL_H_