diff options
Diffstat (limited to 'chrome/browser')
-rw-r--r-- | chrome/browser/browser_prefs.cc | 2 | ||||
-rw-r--r-- | chrome/browser/cocoa/tab_strip_controller.mm | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/chrome/browser/browser_prefs.cc b/chrome/browser/browser_prefs.cc index 4d0ee04..445130c 100644 --- a/chrome/browser/browser_prefs.cc +++ b/chrome/browser/browser_prefs.cc @@ -39,6 +39,7 @@ void RegisterAllPrefs(PrefService* user_prefs, PrefService* local_state) { Browser::RegisterPrefs(local_state); BrowserRenderProcessHost::RegisterPrefs(local_state); CacheManagerHost::RegisterPrefs(local_state); + SafeBrowsingService::RegisterPrefs(local_state); #if defined(OS_WIN) // TODO(port): whittle this down as we port BookmarkManagerView::RegisterPrefs(local_state); BrowserView::RegisterBrowserViewPrefs(local_state); @@ -49,7 +50,6 @@ void RegisterAllPrefs(PrefService* user_prefs, PrefService* local_state) { PageInfoWindow::RegisterPrefs(local_state); TaskManager::RegisterPrefs(local_state); ExternalProtocolHandler::RegisterPrefs(local_state); - SafeBrowsingService::RegisterPrefs(local_state); #endif // User prefs diff --git a/chrome/browser/cocoa/tab_strip_controller.mm b/chrome/browser/cocoa/tab_strip_controller.mm index cc491ff..e7d88c4 100644 --- a/chrome/browser/cocoa/tab_strip_controller.mm +++ b/chrome/browser/cocoa/tab_strip_controller.mm @@ -257,9 +257,11 @@ void TabStripBridge::TabInsertedAt(TabContents* contents, } void TabStripBridge::TabClosingAt(TabContents* contents, int index) { + NOTIMPLEMENTED(); } void TabStripBridge::TabDetachedAt(TabContents* contents, int index) { + NOTIMPLEMENTED(); } void TabStripBridge::TabSelectedAt(TabContents* old_contents, @@ -275,10 +277,13 @@ void TabStripBridge::TabSelectedAt(TabContents* old_contents, void TabStripBridge::TabMoved(TabContents* contents, int from_index, int to_index) { + NOTIMPLEMENTED(); } void TabStripBridge::TabChangedAt(TabContents* contents, int index) { + NOTIMPLEMENTED(); } void TabStripBridge::TabStripEmpty() { + NOTIMPLEMENTED(); } |