Chromium Code Reviews| Index: chrome/browser/tab_closeable_state_watcher.cc |
| diff --git a/chrome/browser/tab_closeable_state_watcher.cc b/chrome/browser/tab_closeable_state_watcher.cc |
| index 198dee50f05f9a656ee2d113f2642526882b49b7..28c9135d49355b9862941dd13a40ea354b04fa73 100644 |
| --- a/chrome/browser/tab_closeable_state_watcher.cc |
| +++ b/chrome/browser/tab_closeable_state_watcher.cc |
| @@ -27,3 +27,11 @@ |
| watcher = new ::TabCloseableStateWatcher(); |
| return watcher; |
| } |
| + |
| +bool TabCloseableStateWatcher::CanCloseTab(const Browser* browser) const { |
| + return true; |
| +} |
| + |
| +bool TabCloseableStateWatcher::CanCloseBrowser(Browser* browser) { |
| + return true; |
| +} |