Chromium Code Reviews| 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_ |