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

Side by Side Diff: chrome/browser/ui/gtk/protocol_dialog_gtk.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_GTK_PROTOCOL_DIALOG_GTK_H_
6 #define CHROME_BROWSER_UI_GTK_PROTOCOL_DIALOG_GTK_H_
7
8 #include "base/basictypes.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "base/time/time.h"
11 #include "chrome/browser/ui/protocol_dialog_delegate.h"
12 #include "ui/base/gtk/gtk_signal.h"
13 #include "url/gurl.h"
14
15 typedef struct _GtkWidget GtkWidget;
16
17 // Gtk implementation of a dialog for handling special protocols.
18 class ProtocolDialogGtk {
19 public:
20 explicit ProtocolDialogGtk(scoped_ptr<const ProtocolDialogDelegate> delegate);
21 virtual ~ProtocolDialogGtk();
22
23 private:
24 CHROMEGTK_CALLBACK_1(ProtocolDialogGtk, void, OnResponse, int);
25
26 const scoped_ptr<const ProtocolDialogDelegate> delegate_;
27 base::TimeTicks creation_time_;
28
29 GtkWidget* dialog_;
30 GtkWidget* checkbox_;
31
32 DISALLOW_COPY_AND_ASSIGN(ProtocolDialogGtk);
33 };
34
35 #endif // CHROME_BROWSER_UI_GTK_PROTOCOL_DIALOG_GTK_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698