| OLD | NEW |
| 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_MODEL_H_ | 5 #ifndef CHROME_BROWSER_BOOKMARKS_BOOKMARK_MODEL_H_ |
| 6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_MODEL_H_ | 6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_MODEL_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <set> | 9 #include <set> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 history::FaviconData favicon); | 390 history::FaviconData favicon); |
| 391 | 391 |
| 392 // Invoked from the node to load the favicon. Requests the favicon from the | 392 // Invoked from the node to load the favicon. Requests the favicon from the |
| 393 // favicon service. | 393 // favicon service. |
| 394 void LoadFavicon(BookmarkNode* node); | 394 void LoadFavicon(BookmarkNode* node); |
| 395 | 395 |
| 396 // If we're waiting on a favicon for node, the load request is canceled. | 396 // If we're waiting on a favicon for node, the load request is canceled. |
| 397 void CancelPendingFaviconLoadRequests(BookmarkNode* node); | 397 void CancelPendingFaviconLoadRequests(BookmarkNode* node); |
| 398 | 398 |
| 399 // NotificationObserver. | 399 // NotificationObserver. |
| 400 virtual void Observe(NotificationType type, | 400 virtual void Observe(int type, |
| 401 const NotificationSource& source, | 401 const NotificationSource& source, |
| 402 const NotificationDetails& details); | 402 const NotificationDetails& details); |
| 403 | 403 |
| 404 // Generates and returns the next node ID. | 404 // Generates and returns the next node ID. |
| 405 int64 generate_next_node_id(); | 405 int64 generate_next_node_id(); |
| 406 | 406 |
| 407 // Sets the maximum node ID to the given value. | 407 // Sets the maximum node ID to the given value. |
| 408 // This is used by BookmarkCodec to report the maximum ID after it's done | 408 // This is used by BookmarkCodec to report the maximum ID after it's done |
| 409 // decoding since during decoding codec assigns node IDs. | 409 // decoding since during decoding codec assigns node IDs. |
| 410 void set_next_node_id(int64 id) { next_node_id_ = id; } | 410 void set_next_node_id(int64 id) { next_node_id_ = id; } |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 456 scoped_refptr<BookmarkStorage> store_; | 456 scoped_refptr<BookmarkStorage> store_; |
| 457 | 457 |
| 458 scoped_ptr<BookmarkIndex> index_; | 458 scoped_ptr<BookmarkIndex> index_; |
| 459 | 459 |
| 460 base::WaitableEvent loaded_signal_; | 460 base::WaitableEvent loaded_signal_; |
| 461 | 461 |
| 462 DISALLOW_COPY_AND_ASSIGN(BookmarkModel); | 462 DISALLOW_COPY_AND_ASSIGN(BookmarkModel); |
| 463 }; | 463 }; |
| 464 | 464 |
| 465 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_MODEL_H_ | 465 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_MODEL_H_ |
| OLD | NEW |