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

Side by Side Diff: chrome/browser/bookmarks/bookmark_storage.h

Issue 11959042: bookmarks: Forward declare some classes in header files when possible. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/bookmarks/bookmark_storage.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_BOOKMARKS_BOOKMARK_STORAGE_H_ 5 #ifndef CHROME_BROWSER_BOOKMARKS_BOOKMARK_STORAGE_H_
6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_STORAGE_H_ 6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_STORAGE_H_
7 7
8 #include "base/files/important_file_writer.h" 8 #include "base/files/important_file_writer.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
11 #include "chrome/browser/bookmarks/bookmark_index.h"
12 11
12 class BookmarkIndex;
13 class BookmarkModel; 13 class BookmarkModel;
14 class BookmarkPermanentNode; 14 class BookmarkPermanentNode;
15 15
16 namespace base { 16 namespace base {
17 class SequencedTaskRunner; 17 class SequencedTaskRunner;
18 } 18 }
19 19
20 namespace content { 20 namespace content {
21 class BrowserContext; 21 class BrowserContext;
22 } 22 }
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 // See class description of BookmarkLoadDetails for details on this. 145 // See class description of BookmarkLoadDetails for details on this.
146 scoped_ptr<BookmarkLoadDetails> details_; 146 scoped_ptr<BookmarkLoadDetails> details_;
147 147
148 // Sequenced task runner where file I/O operations will be performed at. 148 // Sequenced task runner where file I/O operations will be performed at.
149 scoped_refptr<base::SequencedTaskRunner> sequenced_task_runner_; 149 scoped_refptr<base::SequencedTaskRunner> sequenced_task_runner_;
150 150
151 DISALLOW_COPY_AND_ASSIGN(BookmarkStorage); 151 DISALLOW_COPY_AND_ASSIGN(BookmarkStorage);
152 }; 152 };
153 153
154 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_STORAGE_H_ 154 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_STORAGE_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/bookmarks/bookmark_storage.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698