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

Unified Diff: chrome/browser/cocoa/history_menu_bridge.mm

Issue 267019: Add the ability to unload the HistoryBackend.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/bookmarks/bookmark_storage.cc ('k') | chrome/browser/history/history.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/cocoa/history_menu_bridge.mm
===================================================================
--- chrome/browser/cocoa/history_menu_bridge.mm (revision 28361)
+++ chrome/browser/cocoa/history_menu_bridge.mm (working copy)
@@ -48,7 +48,7 @@
// may not be ready when the Bridge is created. If this happens, register
// for a notification that tells us the HistoryService is ready.
HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS);
- if (hs != NULL && hs->backend_loaded()) {
+ if (hs != NULL && hs->BackendLoaded()) {
history_service_ = hs;
Init();
}
@@ -90,7 +90,7 @@
if (type == NotificationType::HISTORY_LOADED) {
HistoryService* hs =
profile_->GetHistoryService(Profile::EXPLICIT_ACCESS);
- if (hs != NULL && hs->backend_loaded()) {
+ if (hs != NULL && hs->BackendLoaded()) {
history_service_ = hs;
Init();
« no previous file with comments | « chrome/browser/bookmarks/bookmark_storage.cc ('k') | chrome/browser/history/history.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698