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

Side by Side Diff: chrome/browser/ui/gtk/gtk_theme_service.h

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 | « chrome/browser/ui/gtk/global_menu_bar.h ('k') | chrome/browser/ui/gtk/gtk_util.cc » ('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 #ifndef CHROME_BROWSER_UI_GTK_GTK_THEME_SERVICE_H_ 5 #ifndef CHROME_BROWSER_UI_GTK_GTK_THEME_SERVICE_H_
6 #define CHROME_BROWSER_UI_GTK_GTK_THEME_SERVICE_H_ 6 #define CHROME_BROWSER_UI_GTK_GTK_THEME_SERVICE_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
13 #include "chrome/browser/prefs/pref_change_registrar.h" 13 #include "chrome/browser/prefs/pref_change_registrar.h"
14 #include "chrome/browser/themes/theme_service.h" 14 #include "chrome/browser/themes/theme_service.h"
15 #include "chrome/browser/ui/gtk/owned_widget_gtk.h"
16 #include "content/common/notification_observer.h" 15 #include "content/common/notification_observer.h"
17 #include "ui/base/gtk/gtk_integers.h" 16 #include "ui/base/gtk/gtk_integers.h"
18 #include "ui/base/gtk/gtk_signal.h" 17 #include "ui/base/gtk/gtk_signal.h"
18 #include "ui/base/gtk/owned_widget_gtk.h"
19 #include "ui/gfx/color_utils.h" 19 #include "ui/gfx/color_utils.h"
20 20
21 class CairoCachedSurface; 21 class CairoCachedSurface;
22 class Profile; 22 class Profile;
23 23
24 namespace ui { 24 namespace ui {
25 class GtkSignalRegistrar; 25 class GtkSignalRegistrar;
26 } 26 }
27 27
28 typedef struct _GdkDisplay GdkDisplay; 28 typedef struct _GdkDisplay GdkDisplay;
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 315
316 // The default folder icon and default bookmark icon for the GTK theme. 316 // The default folder icon and default bookmark icon for the GTK theme.
317 // These are static because the system can only have one theme at a time. 317 // These are static because the system can only have one theme at a time.
318 // They are cached when they are requested the first time, and cleared when 318 // They are cached when they are requested the first time, and cleared when
319 // the system theme changes. 319 // the system theme changes.
320 static GdkPixbuf* default_folder_icon_; 320 static GdkPixbuf* default_folder_icon_;
321 static GdkPixbuf* default_bookmark_icon_; 321 static GdkPixbuf* default_bookmark_icon_;
322 }; 322 };
323 323
324 #endif // CHROME_BROWSER_UI_GTK_GTK_THEME_SERVICE_H_ 324 #endif // CHROME_BROWSER_UI_GTK_GTK_THEME_SERVICE_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/gtk/global_menu_bar.h ('k') | chrome/browser/ui/gtk/gtk_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698