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

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

Issue 2844193002: Add UMA histogram to track the various sources that request the feedback app (Closed)
Patch Set: "" --> string() Created 3 years, 7 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/ash/chrome_new_window_client.h" 5 #include "chrome/browser/ui/ash/chrome_new_window_client.h"
6 6
7 #include "ash/content/keyboard_overlay/keyboard_overlay_view.h" 7 #include "ash/content/keyboard_overlay/keyboard_overlay_view.h"
8 #include "ash/public/interfaces/constants.mojom.h" 8 #include "ash/public/interfaces/constants.mojom.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "chrome/browser/chromeos/file_manager/app_id.h" 10 #include "chrome/browser/chromeos/file_manager/app_id.h"
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 std::string url(chrome::kChromeUIKeyboardOverlayURL); 211 std::string url(chrome::kChromeUIKeyboardOverlayURL);
212 ash::KeyboardOverlayView::ShowDialog(profile, new ChromeWebContentsHandler, 212 ash::KeyboardOverlayView::ShowDialog(profile, new ChromeWebContentsHandler,
213 GURL(url)); 213 GURL(url));
214 } 214 }
215 215
216 void ChromeNewWindowClient::ShowTaskManager() { 216 void ChromeNewWindowClient::ShowTaskManager() {
217 chrome::OpenTaskManager(nullptr); 217 chrome::OpenTaskManager(nullptr);
218 } 218 }
219 219
220 void ChromeNewWindowClient::OpenFeedbackPage() { 220 void ChromeNewWindowClient::OpenFeedbackPage() {
221 chrome::OpenFeedbackDialog(GetActiveBrowser()); 221 chrome::OpenFeedbackDialog(GetActiveBrowser(), chrome::kFeedbackSourceAsh);
222 } 222 }
OLDNEW
« no previous file with comments | « chrome/browser/supervised_user/supervised_user_interstitial.cc ('k') | chrome/browser/ui/browser_command_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698