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

Side by Side Diff: components/bookmarks/browser/bookmark_expanded_state_tracker.h

Issue 1546143002: Switch to standard integer types in components/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_EXPANDED_STATE_TRACKER_H_ 5 #ifndef COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_EXPANDED_STATE_TRACKER_H_
6 #define COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_EXPANDED_STATE_TRACKER_H_ 6 #define COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_EXPANDED_STATE_TRACKER_H_
7 7
8 #include <set> 8 #include <set>
9 9
10 #include "base/macros.h"
10 #include "components/bookmarks/browser/base_bookmark_model_observer.h" 11 #include "components/bookmarks/browser/base_bookmark_model_observer.h"
11 12
12 class PrefService; 13 class PrefService;
13 14
14 namespace bookmarks { 15 namespace bookmarks {
15 16
16 class BookmarkModel; 17 class BookmarkModel;
17 class BookmarkNode; 18 class BookmarkNode;
18 19
19 // BookmarkExpandedStateTracker is used to track a set of expanded nodes. The 20 // BookmarkExpandedStateTracker is used to track a set of expanded nodes. The
(...skipping 30 matching lines...) Expand all
50 51
51 BookmarkModel* bookmark_model_; 52 BookmarkModel* bookmark_model_;
52 PrefService* pref_service_; 53 PrefService* pref_service_;
53 54
54 DISALLOW_COPY_AND_ASSIGN(BookmarkExpandedStateTracker); 55 DISALLOW_COPY_AND_ASSIGN(BookmarkExpandedStateTracker);
55 }; 56 };
56 57
57 } // namespace bookmarks 58 } // namespace bookmarks
58 59
59 #endif // COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_EXPANDED_STATE_TRACKER_H_ 60 #endif // COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_EXPANDED_STATE_TRACKER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698