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

Unified Diff: chrome/browser/gtk/bookmark_bubble_gtk.h

Issue 100203: Implement a mostly working InfoBubble with a shim BookmarkBubble. (Closed)
Patch Set: Comments Created 11 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
« no previous file with comments | « no previous file | chrome/browser/gtk/bookmark_bubble_gtk.cc » ('j') | chrome/browser/gtk/bookmark_bubble_gtk.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/gtk/bookmark_bubble_gtk.h
diff --git a/chrome/browser/gtk/bookmark_bubble_gtk.h b/chrome/browser/gtk/bookmark_bubble_gtk.h
new file mode 100644
index 0000000000000000000000000000000000000000..f456ba1ce60651a4dcf21636cb319de852c6af24
--- /dev/null
+++ b/chrome/browser/gtk/bookmark_bubble_gtk.h
@@ -0,0 +1,26 @@
+// Copyright (c) 2009 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.
+
+#ifndef CHROME_BROWSER_GTK_BOOKMARK_BUBBLE_GTK_H_
+#define CHROME_BROWSER_GTK_BOOKMARK_BUBBLE_GTK_H_
+
+#include "base/basictypes.h"
+#include "googleurl/src/gurl.h"
ecattell 2009/04/30 19:55:37 you should use forward declares rather than includ
+
+typedef struct _GtkWidget GtkWidget;
+
+class Profile;
+namespace gfx {
+class Rect;
+}
+
+class BookmarkBubbleGtk {
ecattell 2009/04/30 19:55:37 Since you only have one static function, you shoul
+ public:
+ static void Show(const gfx::Rect& rect,
ecattell 2009/04/30 19:55:37 Please add comments for this function.
+ Profile* profile,
+ const GURL& url,
+ bool newly_bookmarked);
+};
+
+#endif // CHROME_BROWSER_GTK_BOOKMARK_BUBBLE_GTK_H_
« no previous file with comments | « no previous file | chrome/browser/gtk/bookmark_bubble_gtk.cc » ('j') | chrome/browser/gtk/bookmark_bubble_gtk.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698