| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_MODEL_H_ | 5 #ifndef COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_MODEL_H_ |
| 6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_MODEL_H_ | 6 #define COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_MODEL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
| 14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
| 15 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
| 16 #include "base/observer_list.h" | 16 #include "base/observer_list.h" |
| (...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 base::WaitableEvent loaded_signal_; | 404 base::WaitableEvent loaded_signal_; |
| 405 | 405 |
| 406 // See description of IsDoingExtensiveChanges above. | 406 // See description of IsDoingExtensiveChanges above. |
| 407 int extensive_changes_; | 407 int extensive_changes_; |
| 408 | 408 |
| 409 scoped_ptr<BookmarkExpandedStateTracker> expanded_state_tracker_; | 409 scoped_ptr<BookmarkExpandedStateTracker> expanded_state_tracker_; |
| 410 | 410 |
| 411 DISALLOW_COPY_AND_ASSIGN(BookmarkModel); | 411 DISALLOW_COPY_AND_ASSIGN(BookmarkModel); |
| 412 }; | 412 }; |
| 413 | 413 |
| 414 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_MODEL_H_ | 414 #endif // COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_MODEL_H_ |
| OLD | NEW |