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

Side by Side Diff: chrome/browser/ui/browser.cc

Issue 6130004: The UMA stat for the Wrench menu was only firing when Alt+F was pressed, not ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 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/browser.h" 5 #include "chrome/browser/ui/browser.h"
6 6
7 #if defined(OS_WIN) 7 #if defined(OS_WIN)
8 #include <shellapi.h> 8 #include <shellapi.h>
9 #include <windows.h> 9 #include <windows.h>
10 #endif // OS_WIN 10 #endif // OS_WIN
11 11
(...skipping 1719 matching lines...) Expand 10 before | Expand all | Expand 10 after
1731 UserMetrics::RecordAction(UserMetricsAction("ShowBookmarksBar"), profile_); 1731 UserMetrics::RecordAction(UserMetricsAction("ShowBookmarksBar"), profile_);
1732 window_->ToggleBookmarkBar(); 1732 window_->ToggleBookmarkBar();
1733 } 1733 }
1734 1734
1735 void Browser::OpenBookmarkManager() { 1735 void Browser::OpenBookmarkManager() {
1736 UserMetrics::RecordAction(UserMetricsAction("ShowBookmarkManager"), profile_); 1736 UserMetrics::RecordAction(UserMetricsAction("ShowBookmarkManager"), profile_);
1737 ShowBookmarkManagerTab(); 1737 ShowBookmarkManagerTab();
1738 } 1738 }
1739 1739
1740 void Browser::ShowAppMenu() { 1740 void Browser::ShowAppMenu() {
1741 UserMetrics::RecordAction(UserMetricsAction("ShowAppMenu"), profile_); 1741 // We record the user metric for this event in WrenchMenu::RunMenu.
1742 window_->ShowAppMenu(); 1742 window_->ShowAppMenu();
1743 } 1743 }
1744 1744
1745 void Browser::ShowBookmarkManagerTab() { 1745 void Browser::ShowBookmarkManagerTab() {
1746 UserMetrics::RecordAction(UserMetricsAction("ShowBookmarks"), profile_); 1746 UserMetrics::RecordAction(UserMetricsAction("ShowBookmarks"), profile_);
1747 ShowSingletonTab(GURL(chrome::kChromeUIBookmarksURL), false); 1747 ShowSingletonTab(GURL(chrome::kChromeUIBookmarksURL), false);
1748 } 1748 }
1749 1749
1750 void Browser::ShowHistoryTab() { 1750 void Browser::ShowHistoryTab() {
1751 UserMetrics::RecordAction(UserMetricsAction("ShowHistory"), profile_); 1751 UserMetrics::RecordAction(UserMetricsAction("ShowHistory"), profile_);
(...skipping 2483 matching lines...) Expand 10 before | Expand all | Expand 10 after
4235 // The page transition below is only for the purpose of inserting the tab. 4235 // The page transition below is only for the purpose of inserting the tab.
4236 browser->AddTab(view_source_contents, PageTransition::LINK); 4236 browser->AddTab(view_source_contents, PageTransition::LINK);
4237 } 4237 }
4238 4238
4239 if (profile_->HasSessionService()) { 4239 if (profile_->HasSessionService()) {
4240 SessionService* session_service = profile_->GetSessionService(); 4240 SessionService* session_service = profile_->GetSessionService();
4241 if (session_service) 4241 if (session_service)
4242 session_service->TabRestored(&view_source_contents->controller(), false); 4242 session_service->TabRestored(&view_source_contents->controller(), false);
4243 } 4243 }
4244 } 4244 }
OLDNEW
« no previous file with comments | « chrome/browser/gtk/browser_toolbar_gtk.cc ('k') | chrome/browser/ui/cocoa/wrench_menu_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698