| Index: chrome/browser/bookmarks/bookmark_storage.h
 | 
| ===================================================================
 | 
| --- chrome/browser/bookmarks/bookmark_storage.h	(revision 30650)
 | 
| +++ chrome/browser/bookmarks/bookmark_storage.h	(working copy)
 | 
| @@ -19,10 +19,6 @@
 | 
|  class Task;
 | 
|  class Value;
 | 
|  
 | 
| -namespace base {
 | 
| -class Thread;
 | 
| -}
 | 
| -
 | 
|  // BookmarkStorage handles reading/write the bookmark bar model. The
 | 
|  // BookmarkModel uses the BookmarkStorage to load bookmarks from disk, as well
 | 
|  // as notifying the BookmarkStorage every time the model changes.
 | 
| @@ -143,23 +139,12 @@
 | 
|    // Returns true on successful serialization.
 | 
|    bool SaveNow();
 | 
|  
 | 
| -  // Runs task on backend thread (or on current thread if backend thread
 | 
| -  // is NULL). Takes ownership of |task|.
 | 
| -  void RunTaskOnBackendThread(Task* task) const;
 | 
| -
 | 
| -  // Returns the thread the backend is run on.
 | 
| -  const base::Thread* backend_thread() const { return backend_thread_; }
 | 
| -
 | 
|    // Keep the pointer to profile, we may need it for migration from history.
 | 
|    Profile* profile_;
 | 
|  
 | 
|    // The model. The model is NULL once BookmarkModelDeleted has been invoked.
 | 
|    BookmarkModel* model_;
 | 
|  
 | 
| -  // Thread read/writing is run on. This comes from the profile, and is null
 | 
| -  // during testing.
 | 
| -  const base::Thread* backend_thread_;
 | 
| -
 | 
|    // Helper to write bookmark data safely.
 | 
|    ImportantFileWriter writer_;
 | 
|  
 | 
| 
 |