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

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

Issue 6296012: Update references part 2: files in chrome/browser/ui/... (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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/ui/gtk/find_bar_gtk.h ('k') | chrome/browser/ui/gtk/first_run_bubble.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 // This is the GTK implementation of the First Run bubble, the dialog box 5 // This is the GTK implementation of the First Run bubble, the dialog box
6 // presented on first run of Chromium. There can only ever be a single 6 // presented on first run of Chromium. There can only ever be a single
7 // bubble open, so the class presents only static methods. 7 // bubble open, so the class presents only static methods.
8 8
9 #ifndef CHROME_BROWSER_UI_GTK_FIRST_RUN_BUBBLE_H_ 9 #ifndef CHROME_BROWSER_UI_GTK_FIRST_RUN_BUBBLE_H_
10 #define CHROME_BROWSER_UI_GTK_FIRST_RUN_BUBBLE_H_ 10 #define CHROME_BROWSER_UI_GTK_FIRST_RUN_BUBBLE_H_
11 #pragma once 11 #pragma once
12 12
13 #include <gtk/gtk.h> 13 #include <gtk/gtk.h>
14 14
15 #include <vector> 15 #include <vector>
16 16
17 #include "base/basictypes.h" 17 #include "base/basictypes.h"
18 #include "chrome/browser/first_run/first_run.h" 18 #include "chrome/browser/first_run/first_run.h"
19 #include "chrome/browser/gtk/info_bubble_gtk.h" 19 #include "chrome/browser/ui/gtk/info_bubble_gtk.h"
20 #include "chrome/common/notification_observer.h" 20 #include "chrome/common/notification_observer.h"
21 #include "chrome/common/notification_registrar.h" 21 #include "chrome/common/notification_registrar.h"
22 22
23 class Profile; 23 class Profile;
24 24
25 class FirstRunBubble : public InfoBubbleGtkDelegate, 25 class FirstRunBubble : public InfoBubbleGtkDelegate,
26 public NotificationObserver { 26 public NotificationObserver {
27 public: 27 public:
28 // Shows the first run bubble, pointing at |rect|. 28 // Shows the first run bubble, pointing at |rect|.
29 static void Show(Profile* profile, 29 static void Show(Profile* profile,
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 std::vector<GtkWidget*> labels_; 81 std::vector<GtkWidget*> labels_;
82 82
83 InfoBubbleGtk* bubble_; 83 InfoBubbleGtk* bubble_;
84 84
85 NotificationRegistrar registrar_; 85 NotificationRegistrar registrar_;
86 86
87 DISALLOW_COPY_AND_ASSIGN(FirstRunBubble); 87 DISALLOW_COPY_AND_ASSIGN(FirstRunBubble);
88 }; 88 };
89 89
90 #endif // CHROME_BROWSER_UI_GTK_FIRST_RUN_BUBBLE_H_ 90 #endif // CHROME_BROWSER_UI_GTK_FIRST_RUN_BUBBLE_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/gtk/find_bar_gtk.h ('k') | chrome/browser/ui/gtk/first_run_bubble.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698