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

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

Issue 2197483003: Move the Mac Task Manager to the new backend code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mark Created 4 years, 4 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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_dialogs.h" 5 #include "chrome/browser/ui/browser_dialogs.h"
6 6
7 #include <memory> 7 #include <memory>
8 8
9 #include "chrome/browser/chooser_controller/chooser_controller.h" 9 #include "chrome/browser/chooser_controller/chooser_controller.h"
10 #include "chrome/browser/extensions/api/chrome_device_permissions_prompt.h" 10 #include "chrome/browser/extensions/api/chrome_device_permissions_prompt.h"
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 namespace chrome { 57 namespace chrome {
58 58
59 task_management::TaskManagerTableModel* ShowTaskManager(Browser* browser) { 59 task_management::TaskManagerTableModel* ShowTaskManager(Browser* browser) {
60 return task_management::NewTaskManagerView::Show(browser); 60 return task_management::NewTaskManagerView::Show(browser);
61 } 61 }
62 62
63 void HideTaskManager() { 63 void HideTaskManager() {
64 task_management::NewTaskManagerView::Hide(); 64 task_management::NewTaskManagerView::Hide();
65 } 65 }
66 66
67 bool NotifyOldTaskManagerBytesRead(const net::URLRequest& request,
68 int64_t bytes_read) {
69 return false;
70 }
71
72 } // namespace chrome 67 } // namespace chrome
73 68
74 #if defined(OS_CHROMEOS) 69 #if defined(OS_CHROMEOS)
75 70
76 BubbleShowPtr ShowIntentPickerBubble() { 71 BubbleShowPtr ShowIntentPickerBubble() {
77 return IntentPickerBubbleView::ShowBubble; 72 return IntentPickerBubbleView::ShowBubble;
78 } 73 }
79 74
80 #endif // OS_CHROMEOS 75 #endif // OS_CHROMEOS
OLDNEW
« no previous file with comments | « chrome/browser/ui/task_manager/task_manager_columns.cc ('k') | chrome/browser/ui/views/new_task_manager_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698