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

Side by Side Diff: ui/base/gtk/owned_widget_gtk.cc

Issue 7669040: content: Move render_widget_host_view_gtk to content/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: chromeos fix. Created 9 years, 4 months 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/base/gtk/owned_widget_gtk.h ('k') | ui/base/l10n/l10n_util.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/owned_widget_gtk.h" 5 #include "ui/base/gtk/owned_widget_gtk.h"
6 6
7 #include <gtk/gtk.h> 7 #include <gtk/gtk.h>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 10
11 OwnedWidgetGtk::~OwnedWidgetGtk() { 11 OwnedWidgetGtk::~OwnedWidgetGtk() {
12 Destroy(); 12 Destroy();
13 } 13 }
14 14
15 void OwnedWidgetGtk::Own(GtkWidget* widget) { 15 void OwnedWidgetGtk::Own(GtkWidget* widget) {
(...skipping 16 matching lines...) Expand all
32 32
33 GtkWidget* widget = widget_; 33 GtkWidget* widget = widget_;
34 widget_ = NULL; 34 widget_ = NULL;
35 gtk_widget_destroy(widget); 35 gtk_widget_destroy(widget);
36 36
37 DCHECK(!g_object_is_floating(widget)); 37 DCHECK(!g_object_is_floating(widget));
38 // NOTE: Assumes some implementation details about glib internals. 38 // NOTE: Assumes some implementation details about glib internals.
39 DCHECK_EQ(G_OBJECT(widget)->ref_count, 1U); 39 DCHECK_EQ(G_OBJECT(widget)->ref_count, 1U);
40 g_object_unref(widget); 40 g_object_unref(widget);
41 } 41 }
OLDNEW
« no previous file with comments | « ui/base/gtk/owned_widget_gtk.h ('k') | ui/base/l10n/l10n_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698