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

Side by Side Diff: chrome/browser/gtk/bookmark_tree_model.h

Issue 3179017: FBTF: Remove "obviously" unneeded standard C++ library #includes. (Closed)
Patch Set: fixed mac oopsie Created 10 years, 4 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
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #ifndef CHROME_BROWSER_GTK_BOOKMARK_TREE_MODEL_H_ 5 #ifndef CHROME_BROWSER_GTK_BOOKMARK_TREE_MODEL_H_
6 #define CHROME_BROWSER_GTK_BOOKMARK_TREE_MODEL_H_ 6 #define CHROME_BROWSER_GTK_BOOKMARK_TREE_MODEL_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string>
10 #include "base/basictypes.h" 9 #include "base/basictypes.h"
11 #include "base/string16.h" 10 #include "base/string16.h"
12 11
13 class BookmarkModel; 12 class BookmarkModel;
14 class BookmarkNode; 13 class BookmarkNode;
15 14
16 typedef struct _GtkCellRenderer GtkCellRenderer; 15 typedef struct _GtkCellRenderer GtkCellRenderer;
17 typedef struct _GtkTreeIter GtkTreeIter; 16 typedef struct _GtkTreeIter GtkTreeIter;
18 typedef struct _GtkTreeModel GtkTreeModel; 17 typedef struct _GtkTreeModel GtkTreeModel;
19 typedef struct _GtkTreeStore GtkTreeStore; 18 typedef struct _GtkTreeStore GtkTreeStore;
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 68
70 // Returns the id field of the row pointed to by |iter|. 69 // Returns the id field of the row pointed to by |iter|.
71 int64 GetIdFromTreeIter(GtkTreeModel* model, GtkTreeIter* iter); 70 int64 GetIdFromTreeIter(GtkTreeModel* model, GtkTreeIter* iter);
72 71
73 // Returns the title field in utf8 of the row pointed to by |iter|. 72 // Returns the title field in utf8 of the row pointed to by |iter|.
74 string16 GetTitleFromTreeIter(GtkTreeModel* model, GtkTreeIter* iter); 73 string16 GetTitleFromTreeIter(GtkTreeModel* model, GtkTreeIter* iter);
75 74
76 } // namespace bookmark_utils 75 } // namespace bookmark_utils
77 76
78 #endif // CHROME_BROWSER_GTK_BOOKMARK_TREE_MODEL_H_ 77 #endif // CHROME_BROWSER_GTK_BOOKMARK_TREE_MODEL_H_
OLDNEW
« no previous file with comments | « chrome/browser/gtk/bookmark_editor_gtk.h ('k') | chrome/browser/gtk/content_setting_bubble_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698