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

Unified Diff: chrome/browser/gtk/options/managed_prefs_banner_gtk.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
Index: chrome/browser/gtk/options/managed_prefs_banner_gtk.cc
===================================================================
--- chrome/browser/gtk/options/managed_prefs_banner_gtk.cc (revision 71352)
+++ chrome/browser/gtk/options/managed_prefs_banner_gtk.cc (working copy)
@@ -1,49 +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/options/managed_prefs_banner_gtk.h"
-
-#include "app/l10n_util.h"
-#include "chrome/browser/gtk/gtk_theme_provider.h"
-#include "chrome/browser/gtk/gtk_util.h"
-#include "grit/generated_resources.h"
-
-namespace {
-
-// Padding within the banner box.
-const int kBannerPadding = 3;
-
-}
-
-ManagedPrefsBannerGtk::ManagedPrefsBannerGtk(PrefService* prefs,
- OptionsPage page)
- : policy::ManagedPrefsBannerBase(prefs, page),
- banner_widget_(NULL) {
- InitWidget();
- OnUpdateVisibility();
-}
-
-void ManagedPrefsBannerGtk::InitWidget() {
- banner_widget_ = gtk_frame_new(NULL);
- GtkWidget* contents = gtk_hbox_new(FALSE, kBannerPadding);
- gtk_container_set_border_width(GTK_CONTAINER(contents), kBannerPadding);
- gtk_container_add(GTK_CONTAINER(banner_widget_), contents);
- GtkWidget* warning_image =
- gtk_image_new_from_stock(GTK_STOCK_DIALOG_WARNING,
- GTK_ICON_SIZE_SMALL_TOOLBAR);
- gtk_box_pack_start(GTK_BOX(contents), warning_image, FALSE, FALSE, 0);
- std::string info_text(l10n_util::GetStringUTF8(IDS_OPTIONS_MANAGED_PREFS));
- GtkWidget* info_label = gtk_label_new(info_text.c_str());
- gtk_box_pack_start(GTK_BOX(contents), info_label, FALSE, FALSE, 0);
- gtk_widget_show_all(banner_widget_);
- gtk_widget_set_no_show_all(GTK_WIDGET(banner_widget_), TRUE);
-}
-
-void ManagedPrefsBannerGtk::OnUpdateVisibility() {
- DCHECK(banner_widget_);
- if (DetermineVisibility())
- gtk_widget_show(banner_widget_);
- else
- gtk_widget_hide(banner_widget_);
-}
« no previous file with comments | « chrome/browser/gtk/options/managed_prefs_banner_gtk.h ('k') | chrome/browser/gtk/options/options_layout_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698