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

Unified Diff: chrome/browser/gtk/overflow_button.cc

Issue 6251001: Move chrome/browser/gtk/ to chrome/browser/ui/gtk/... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/gtk/overflow_button.h ('k') | chrome/browser/gtk/owned_widget_gtk.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/gtk/overflow_button.cc
===================================================================
--- chrome/browser/gtk/overflow_button.cc (revision 71352)
+++ chrome/browser/gtk/overflow_button.cc (working copy)
@@ -1,44 +0,0 @@
-// Copyright (c) 2010 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.
-
-#include "chrome/browser/gtk/overflow_button.h"
-
-#include <gtk/gtk.h>
-
-#include "app/resource_bundle.h"
-#include "chrome/browser/profiles/profile.h"
-#include "chrome/browser/gtk/gtk_theme_provider.h"
-#include "chrome/common/notification_service.h"
-#include "chrome/common/notification_type.h"
-#include "grit/theme_resources.h"
-
-OverflowButton::OverflowButton(Profile* profile) : profile_(profile) {
- widget_.Own(GtkThemeProvider::GetFrom(profile)->BuildChromeButton());
- gtk_widget_set_no_show_all(widget_.get(), TRUE);
-
- registrar_.Add(this, NotificationType::BROWSER_THEME_CHANGED,
- NotificationService::AllSources());
- GtkThemeProvider::GetFrom(profile)->InitThemesFor(this);
-}
-
-OverflowButton::~OverflowButton() {
- widget_.Destroy();
-}
-
-void OverflowButton::Observe(NotificationType type,
- const NotificationSource& source,
- const NotificationDetails& details) {
- GtkWidget* former_child = gtk_bin_get_child(GTK_BIN(widget()));
- if (former_child)
- gtk_widget_destroy(former_child);
-
- GtkWidget* new_child =
- GtkThemeProvider::GetFrom(profile_)->UseGtkTheme() ?
- gtk_arrow_new(GTK_ARROW_DOWN, GTK_SHADOW_NONE) :
- gtk_image_new_from_pixbuf(ResourceBundle::GetSharedInstance().
- GetRTLEnabledPixbufNamed(IDR_BOOKMARK_BAR_CHEVRONS));
-
- gtk_container_add(GTK_CONTAINER(widget()), new_child);
- gtk_widget_show(new_child);
-}
« no previous file with comments | « chrome/browser/gtk/overflow_button.h ('k') | chrome/browser/gtk/owned_widget_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698