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

Unified Diff: chrome/browser/ui/gtk/first_run_bubble.h

Issue 231733005: Delete the GTK+ port of Chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remerge to ToT Created 6 years, 8 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/ui/gtk/first_run_bubble.h
diff --git a/chrome/browser/ui/gtk/first_run_bubble.h b/chrome/browser/ui/gtk/first_run_bubble.h
deleted file mode 100644
index 399ee0ce3db059234ab64a5c71e5fc9920839b16..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/gtk/first_run_bubble.h
+++ /dev/null
@@ -1,41 +0,0 @@
-// Copyright (c) 2012 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.
-
-// This is the GTK implementation of the First Run bubble, the dialog box
-// presented on first run of Chromium. There can only ever be a single
-// bubble open, so the class presents only static methods.
-
-#ifndef CHROME_BROWSER_UI_GTK_FIRST_RUN_BUBBLE_H_
-#define CHROME_BROWSER_UI_GTK_FIRST_RUN_BUBBLE_H_
-
-#include <gtk/gtk.h>
-
-#include "base/compiler_specific.h"
-#include "chrome/browser/ui/gtk/bubble/bubble_gtk.h"
-
-class Browser;
-
-class FirstRunBubble : public BubbleDelegateGtk {
- public:
- // Shows the first run bubble, pointing at |rect|, transient for the toplevel
- // window of the |anchor| widget.
- static void Show(Browser* browser, GtkWidget* anchor, const gfx::Rect& rect);
-
- // Overridden from BubbleDelegateGtk:
- virtual void BubbleClosing(BubbleGtk* bubble, bool closed_by_escape) OVERRIDE;
-
- private:
- FirstRunBubble(Browser* browser, GtkWidget* anchor, const gfx::Rect& rect);
- virtual ~FirstRunBubble();
-
- CHROMEGTK_CALLBACK_0(FirstRunBubble, void, HandleDestroy);
- CHROMEGTK_CALLBACK_0(FirstRunBubble, void, HandleChangeLink);
-
- Browser* browser_;
- BubbleGtk* bubble_;
-
- DISALLOW_COPY_AND_ASSIGN(FirstRunBubble);
-};
-
-#endif // CHROME_BROWSER_UI_GTK_FIRST_RUN_BUBBLE_H_

Powered by Google App Engine
This is Rietveld 408576698