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

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

Issue 14449: Makes the interactive bookmark bar view tests faster by disabling... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years 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/views/bookmark_bar_view_test.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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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_BAR_MODEL_H_ 5 #ifndef CHROME_BROWSER_BOOKMARKS_BOOKMARK_BAR_MODEL_H_
6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_BAR_MODEL_H_ 6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_BAR_MODEL_H_
7 7
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 9
10 #include "base/lock.h" 10 #include "base/lock.h"
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 const std::wstring& title, 277 const std::wstring& title,
278 bool is_starred); 278 bool is_starred);
279 279
280 // Resets the 'date modified' time of the node to 0. This is used during 280 // Resets the 'date modified' time of the node to 0. This is used during
281 // importing to exclude the newly created groups from showing up in the 281 // importing to exclude the newly created groups from showing up in the
282 // combobox of most recently modified groups. 282 // combobox of most recently modified groups.
283 void ResetDateGroupModified(BookmarkNode* node); 283 void ResetDateGroupModified(BookmarkNode* node);
284 284
285 Profile* profile() const { return profile_; } 285 Profile* profile() const { return profile_; }
286 286
287
jcampan 2008/12/16 17:24:12 Remove extra blank line
288 // Sets the BookmarkStorage. This is intended for testing.
289 void set_store(BookmarkStorage* store) {
290 store_ = store;
291 }
292
287 private: 293 private:
288 // Used to order BookmarkNodes by URL. 294 // Used to order BookmarkNodes by URL.
289 class NodeURLComparator { 295 class NodeURLComparator {
290 public: 296 public:
291 bool operator()(BookmarkNode* n1, BookmarkNode* n2) const { 297 bool operator()(BookmarkNode* n1, BookmarkNode* n2) const {
292 return n1->GetURL() < n2->GetURL(); 298 return n1->GetURL() < n2->GetURL();
293 } 299 }
294 }; 300 };
295 301
296 // Implementation of IsBookmarked. Before calling this the caller must 302 // Implementation of IsBookmarked. Before calling this the caller must
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
420 // TODO(port): Implement for other platforms. 426 // TODO(port): Implement for other platforms.
421 427
422 // Handle to event signaled when loading is done. 428 // Handle to event signaled when loading is done.
423 ScopedHandle loaded_signal_; 429 ScopedHandle loaded_signal_;
424 #endif 430 #endif
425 431
426 DISALLOW_COPY_AND_ASSIGN(BookmarkModel); 432 DISALLOW_COPY_AND_ASSIGN(BookmarkModel);
427 }; 433 };
428 434
429 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_BAR_MODEL_H_ 435 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_BAR_MODEL_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/views/bookmark_bar_view_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698