| 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 #include "chrome/browser/ui/gtk/global_history_menu.h" | 5 #include "chrome/browser/ui/gtk/global_history_menu.h" |
| 6 | 6 |
| 7 #include <gtk/gtk.h> | 7 #include <gtk/gtk.h> |
| 8 | 8 |
| 9 #include "base/stl_util-inl.h" | 9 #include "base/stl_util.h" |
| 10 #include "base/string_number_conversions.h" | 10 #include "base/string_number_conversions.h" |
| 11 #include "base/utf_string_conversions.h" | 11 #include "base/utf_string_conversions.h" |
| 12 #include "chrome/browser/history/top_sites.h" | 12 #include "chrome/browser/history/top_sites.h" |
| 13 #include "chrome/browser/profiles/profile.h" | 13 #include "chrome/browser/profiles/profile.h" |
| 14 #include "chrome/browser/sessions/tab_restore_service.h" | 14 #include "chrome/browser/sessions/tab_restore_service.h" |
| 15 #include "chrome/browser/sessions/tab_restore_service_factory.h" | 15 #include "chrome/browser/sessions/tab_restore_service_factory.h" |
| 16 #include "chrome/browser/themes/theme_service_factory.h" | 16 #include "chrome/browser/themes/theme_service_factory.h" |
| 17 #include "chrome/browser/ui/browser.h" | 17 #include "chrome/browser/ui/browser.h" |
| 18 #include "chrome/browser/ui/browser_tab_restore_service_delegate.h" | 18 #include "chrome/browser/ui/browser_tab_restore_service_delegate.h" |
| 19 #include "chrome/browser/ui/gtk/global_menu_bar.h" | 19 #include "chrome/browser/ui/gtk/global_menu_bar.h" |
| (...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 tab_restore_service_->LoadTabsFromLastSession(); | 435 tab_restore_service_->LoadTabsFromLastSession(); |
| 436 tab_restore_service_->AddObserver(this); | 436 tab_restore_service_->AddObserver(this); |
| 437 | 437 |
| 438 // If LoadTabsFromLastSession doesn't load tabs, it won't call | 438 // If LoadTabsFromLastSession doesn't load tabs, it won't call |
| 439 // TabRestoreServiceChanged(). This ensures that all new windows after | 439 // TabRestoreServiceChanged(). This ensures that all new windows after |
| 440 // the first one will have their menus populated correctly. | 440 // the first one will have their menus populated correctly. |
| 441 TabRestoreServiceChanged(tab_restore_service_); | 441 TabRestoreServiceChanged(tab_restore_service_); |
| 442 } | 442 } |
| 443 } | 443 } |
| 444 } | 444 } |
| OLD | NEW |