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

Side by Side 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, 7 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
OLDNEW
(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_
OLDNEW
« 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