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

Unified Diff: chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc

Issue 7748026: content: Reapply "Start splitting up chrome/browser/ui/gtk/gtk_util.h" (r98287) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase on Monday. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/gtk/fullscreen_exit_bubble_gtk.cc ('k') | chrome/browser/ui/gtk/gtk_theme_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc
diff --git a/chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc b/chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc
index c44ab46564546b892fd9793422c5165bd79e4350..b6b5ed38e1fc9bf5fc866f8bf9da216fa56b1c79 100644
--- a/chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc
+++ b/chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc
@@ -6,8 +6,8 @@
#include "base/i18n/time_formatting.h"
#include "base/utf_string_conversions.h"
-#include "chrome/browser/ui/gtk/gtk_util.h"
#include "grit/generated_resources.h"
+#include "ui/base/gtk/gtk_hig_constants.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/text/bytes_formatting.h"
@@ -295,7 +295,7 @@ void BuildWidgets(GtkChromeCookieView *self, gboolean editable_expiration) {
gtk_container_add(GTK_CONTAINER(self->table_box_),
self->cookie_details_table_);
gtk_table_set_col_spacing(GTK_TABLE(self->cookie_details_table_), 0,
- gtk_util::kLabelSpacing);
+ ui::kLabelSpacing);
int row = 0;
self->first_label_ = InitDetailRow(row++, IDS_COOKIES_COOKIE_NAME_LABEL,
@@ -325,7 +325,7 @@ void BuildWidgets(GtkChromeCookieView *self, gboolean editable_expiration) {
gtk_container_add(GTK_CONTAINER(self->table_box_),
self->database_details_table_);
gtk_table_set_col_spacing(GTK_TABLE(self->database_details_table_), 0,
- gtk_util::kLabelSpacing);
+ ui::kLabelSpacing);
InitDetailRow(row++, IDS_COOKIES_COOKIE_NAME_LABEL,
self->database_details_table_, &self->database_name_entry_);
@@ -343,7 +343,7 @@ void BuildWidgets(GtkChromeCookieView *self, gboolean editable_expiration) {
gtk_container_add(GTK_CONTAINER(self->table_box_),
self->local_storage_details_table_);
gtk_table_set_col_spacing(GTK_TABLE(self->local_storage_details_table_), 0,
- gtk_util::kLabelSpacing);
+ ui::kLabelSpacing);
row = 0;
InitDetailRow(row++, IDS_COOKIES_LOCAL_STORAGE_ORIGIN_LABEL,
@@ -361,7 +361,7 @@ void BuildWidgets(GtkChromeCookieView *self, gboolean editable_expiration) {
gtk_container_add(GTK_CONTAINER(self->table_box_),
self->appcache_details_table_);
gtk_table_set_col_spacing(GTK_TABLE(self->appcache_details_table_), 0,
- gtk_util::kLabelSpacing);
+ ui::kLabelSpacing);
row = 0;
InitDetailRow(row++, IDS_COOKIES_APPLICATION_CACHE_MANIFEST_LABEL,
@@ -380,7 +380,7 @@ void BuildWidgets(GtkChromeCookieView *self, gboolean editable_expiration) {
gtk_container_add(GTK_CONTAINER(self->table_box_),
self->indexed_db_details_table_);
gtk_table_set_col_spacing(GTK_TABLE(self->indexed_db_details_table_), 0,
- gtk_util::kLabelSpacing);
+ ui::kLabelSpacing);
row = 0;
InitDetailRow(row++, IDS_COOKIES_LOCAL_STORAGE_ORIGIN_LABEL,
@@ -397,7 +397,7 @@ void BuildWidgets(GtkChromeCookieView *self, gboolean editable_expiration) {
gtk_container_add(GTK_CONTAINER(self->table_box_),
self->local_storage_item_table_);
gtk_table_set_col_spacing(GTK_TABLE(self->local_storage_item_table_), 0,
- gtk_util::kLabelSpacing);
+ ui::kLabelSpacing);
row = 0;
InitDetailRow(row++, IDS_COOKIES_COOKIE_DOMAIN_LABEL,
@@ -415,7 +415,7 @@ void BuildWidgets(GtkChromeCookieView *self, gboolean editable_expiration) {
gtk_container_add(GTK_CONTAINER(self->table_box_),
self->database_accessed_table_);
gtk_table_set_col_spacing(GTK_TABLE(self->local_storage_item_table_), 0,
- gtk_util::kLabelSpacing);
+ ui::kLabelSpacing);
row = 0;
InitDetailRow(row++, IDS_COOKIES_COOKIE_DOMAIN_LABEL,
@@ -436,7 +436,7 @@ void BuildWidgets(GtkChromeCookieView *self, gboolean editable_expiration) {
gtk_container_add(GTK_CONTAINER(self->table_box_),
self->appcache_created_table_);
gtk_table_set_col_spacing(GTK_TABLE(self->appcache_created_table_), 0,
- gtk_util::kLabelSpacing);
+ ui::kLabelSpacing);
row = 0;
InitDetailRow(row++, IDS_COOKIES_APPLICATION_CACHE_MANIFEST_LABEL,
self->appcache_created_table_,
« no previous file with comments | « chrome/browser/ui/gtk/fullscreen_exit_bubble_gtk.cc ('k') | chrome/browser/ui/gtk/gtk_theme_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698