diff options
author | lgarron <lgarron@chromium.org> | 2014-11-17 17:03:39 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-11-18 01:04:12 +0000 |
commit | 9e6dee2aa4a800e861c8359d3bfdc3c3c10c20f5 (patch) | |
tree | 24e32b963d00d4ba21d4bc32e8a6e7e1236b42eb /chrome/browser/app_controller_mac_browsertest.mm | |
parent | 1de47c7dc023e612aa55d4576e1092d40fd04801 (diff) | |
download | chromium_src-9e6dee2aa4a800e861c8359d3bfdc3c3c10c20f5.zip chromium_src-9e6dee2aa4a800e861c8359d3bfdc3c3c10c20f5.tar.gz chromium_src-9e6dee2aa4a800e861c8359d3bfdc3c3c10c20f5.tar.bz2 |
Cache the bookmarks menu on OSX between profile switches.
Previously, when you switched to a profile, we invalidated the existing
bookmarks menu and updated it lazily. Because of the way OSX works, this causes
the menu to be recalculated from scratch the first time you press *any* keyboard
shortcut afer switching to the profile. On a profile with several hundred
bookmarks, this can take several seconds - more than enough to impact casual
browsing.
In particular, it would appear to the user that various innocent shortcuts (e.g.
opening a new tab, copying text, highlighting the location bar) are extremely
slow some of the time. Even more annoyingly, if you switched to a profile and
then immediately alt-tabbed away from it (for example, to get to a third
profile), the lockup would take place when you switched *away* from the profile
– even if you didn't perform any actions on the profile!
This change caches the bookmarks menu and restores it when a window for the
profile gains focus again. That way, the bookmarks menu is updated only when an
action directly invalidates it (i.e. adding or changing bookmarks themselves).
The accompanying test (BookmarksMenuIsRestoredAfterProfileSwitch) verifies that
the menu is restored correctly after switching profile windows and back.
Thanks to Robert Sesek for extensive help while writing and debugging this fix,
as well as its accompanying test. :-)
BUG=429371
TEST=Follow the steps in comment #27 on bug 429371: https://crbug.com/429371#c27
Review URL: https://codereview.chromium.org/733673003
Cr-Commit-Position: refs/heads/master@{#304531}
Diffstat (limited to 'chrome/browser/app_controller_mac_browsertest.mm')
-rw-r--r-- | chrome/browser/app_controller_mac_browsertest.mm | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/chrome/browser/app_controller_mac_browsertest.mm b/chrome/browser/app_controller_mac_browsertest.mm index d79912e..a136a12 100644 --- a/chrome/browser/app_controller_mac_browsertest.mm +++ b/chrome/browser/app_controller_mac_browsertest.mm @@ -14,14 +14,19 @@ #include "base/mac/scoped_nsobject.h" #include "base/prefs/pref_service.h" #include "base/run_loop.h" +#include "base/strings/sys_string_conversions.h" +#include "base/strings/utf_string_conversions.h" #include "chrome/app/chrome_command_ids.h" +#include "components/bookmarks/browser/bookmark_model.h" #import "chrome/browser/app_controller_mac.h" #include "chrome/browser/apps/app_browsertest_util.h" +#include "chrome/browser/bookmarks/bookmark_model_factory.h" #include "chrome/browser/browser_process.h" #include "chrome/browser/profiles/profile_manager.h" #include "chrome/browser/ui/browser.h" #include "chrome/browser/ui/browser_list.h" #include "chrome/browser/ui/browser_window.h" +#include "chrome/browser/ui/cocoa/bookmarks/bookmark_menu_bridge.h" #include "chrome/browser/ui/host_desktop.h" #include "chrome/browser/ui/tabs/tab_strip_model.h" #include "chrome/browser/ui/user_manager.h" @@ -30,6 +35,7 @@ #include "chrome/common/pref_names.h" #include "chrome/common/url_constants.h" #include "chrome/test/base/in_process_browser_test.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "components/signin/core/common/profile_management_switches.h" #include "content/public/browser/web_contents.h" #include "content/public/test/test_navigation_observer.h" @@ -412,4 +418,66 @@ IN_PROC_BROWSER_TEST_F(AppControllerReplaceNTPBrowserTest, ->GetLastCommittedURL()); } +class AppControllerMainMenuBrowserTest : public InProcessBrowserTest { + protected: + AppControllerMainMenuBrowserTest() { + } +}; + +IN_PROC_BROWSER_TEST_F(AppControllerMainMenuBrowserTest, + BookmarksMenuIsRestoredAfterProfileSwitch) { + ProfileManager* profile_manager = g_browser_process->profile_manager(); + base::scoped_nsobject<AppController> ac([[AppController alloc] init]); + [ac awakeFromNib]; + + // Constants for bookmarks that we will create later. + const base::string16 title1(base::ASCIIToUTF16("Dinosaur Comics")); + const GURL url1("http://qwantz.com//"); + + const base::string16 title2(base::ASCIIToUTF16("XKCD")); + const GURL url2("https://www.xkcd.com/"); + + // Use the existing profile as profile 1. + Profile* profile1 = browser()->profile(); + bookmarks::test::WaitForBookmarkModelToLoad( + BookmarkModelFactory::GetForProfile(profile1)); + + // Create profile 2. + base::FilePath path2 = profile_manager->GenerateNextProfileDirectoryPath(); + Profile* profile2 = + Profile::CreateProfile(path2, NULL, Profile::CREATE_MODE_SYNCHRONOUS); + profile_manager->RegisterTestingProfile(profile2, false, true); + bookmarks::test::WaitForBookmarkModelToLoad( + BookmarkModelFactory::GetForProfile(profile2)); + + // Switch to profile 1, create bookmark 1 and force the menu to build. + [ac windowChangedToProfile:profile1]; + [ac bookmarkMenuBridge]->GetBookmarkModel()->AddURL( + [ac bookmarkMenuBridge]->GetBookmarkModel()->bookmark_bar_node(), + 0, title1, url1); + [ac bookmarkMenuBridge]->BuildMenu(); + + // Switch to profile 2, create bookmark 2 and force the menu to build. + [ac windowChangedToProfile:profile2]; + [ac bookmarkMenuBridge]->GetBookmarkModel()->AddURL( + [ac bookmarkMenuBridge]->GetBookmarkModel()->bookmark_bar_node(), + 0, title2, url2); + [ac bookmarkMenuBridge]->BuildMenu(); + + // Test that only bookmark 2 is shown. + EXPECT_FALSE([[ac bookmarkMenuBridge]->BookmarkMenu() itemWithTitle: + SysUTF16ToNSString(title1)]); + EXPECT_TRUE([[ac bookmarkMenuBridge]->BookmarkMenu() itemWithTitle: + SysUTF16ToNSString(title2)]); + + // Switch *back* to profile 1 and *don't* force the menu to build. + [ac windowChangedToProfile:profile1]; + + // Test that only bookmark 1 is shown in the restored menu. + EXPECT_TRUE([[ac bookmarkMenuBridge]->BookmarkMenu() itemWithTitle: + SysUTF16ToNSString(title1)]); + EXPECT_FALSE([[ac bookmarkMenuBridge]->BookmarkMenu() itemWithTitle: + SysUTF16ToNSString(title2)]); +} + } // namespace |