OLD | NEW |
1 // Copyright (c) 2010 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 bookmark bubble, the dialog box | 5 // This is the GTK implementation of the bookmark bubble, the dialog box |
6 // presented to create or edit a bookmark. There can only ever be a single | 6 // presented to create or edit a bookmark. There can only ever be a single |
7 // bubble open, so the class presents only static methods, and handles the | 7 // bubble open, so the class presents only static methods, and handles the |
8 // singleton behavior for you. It also handles the object and widget | 8 // singleton behavior for you. It also handles the object and widget |
9 // lifetimes, destroying everything and possibly committing any changes when | 9 // lifetimes, destroying everything and possibly committing any changes when |
10 // the bubble is closed. | 10 // the bubble is closed. |
11 | 11 |
12 #ifndef CHROME_BROWSER_GTK_BOOKMARK_BUBBLE_GTK_H_ | 12 #ifndef CHROME_BROWSER_UI_GTK_BOOKMARK_BUBBLE_GTK_H_ |
13 #define CHROME_BROWSER_GTK_BOOKMARK_BUBBLE_GTK_H_ | 13 #define CHROME_BROWSER_UI_GTK_BOOKMARK_BUBBLE_GTK_H_ |
14 #pragma once | 14 #pragma once |
15 | 15 |
16 #include <string> | 16 #include <string> |
17 #include <vector> | 17 #include <vector> |
18 | 18 |
19 #include "app/gtk_signal.h" | 19 #include "app/gtk_signal.h" |
20 #include "base/basictypes.h" | 20 #include "base/basictypes.h" |
21 #include "base/scoped_ptr.h" | 21 #include "base/scoped_ptr.h" |
22 #include "base/task.h" | 22 #include "base/task.h" |
23 #include "chrome/browser/gtk/info_bubble_gtk.h" | 23 #include "chrome/browser/gtk/info_bubble_gtk.h" |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 bool newly_bookmarked_; | 119 bool newly_bookmarked_; |
120 // When closing the window, whether we should update or remove the bookmark. | 120 // When closing the window, whether we should update or remove the bookmark. |
121 bool apply_edits_; | 121 bool apply_edits_; |
122 bool remove_bookmark_; | 122 bool remove_bookmark_; |
123 | 123 |
124 NotificationRegistrar registrar_; | 124 NotificationRegistrar registrar_; |
125 | 125 |
126 DISALLOW_COPY_AND_ASSIGN(BookmarkBubbleGtk); | 126 DISALLOW_COPY_AND_ASSIGN(BookmarkBubbleGtk); |
127 }; | 127 }; |
128 | 128 |
129 #endif // CHROME_BROWSER_GTK_BOOKMARK_BUBBLE_GTK_H_ | 129 #endif // CHROME_BROWSER_UI_GTK_BOOKMARK_BUBBLE_GTK_H_ |
OLD | NEW |