OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2009 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_GTK_BOOKMARK_BUBBLE_GTK_H_ | |
6 #define CHROME_BROWSER_GTK_BOOKMARK_BUBBLE_GTK_H_ | |
7 | |
8 #include "base/basictypes.h" | |
9 #include "googleurl/src/gurl.h" | |
ecattell
2009/04/30 19:55:37
you should use forward declares rather than includ
| |
10 | |
11 typedef struct _GtkWidget GtkWidget; | |
12 | |
13 class Profile; | |
14 namespace gfx { | |
15 class Rect; | |
16 } | |
17 | |
18 class BookmarkBubbleGtk { | |
ecattell
2009/04/30 19:55:37
Since you only have one static function, you shoul
| |
19 public: | |
20 static void Show(const gfx::Rect& rect, | |
ecattell
2009/04/30 19:55:37
Please add comments for this function.
| |
21 Profile* profile, | |
22 const GURL& url, | |
23 bool newly_bookmarked); | |
24 }; | |
25 | |
26 #endif // CHROME_BROWSER_GTK_BOOKMARK_BUBBLE_GTK_H_ | |
OLD | NEW |