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

Side by Side Diff: chrome/browser/task_manager/resource_provider.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
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "chrome/browser/task_manager/resource_provider.h"
6
7 #include "third_party/WebKit/public/web/WebCache.h"
8
9 namespace content {
10 class WebContents;
11 }
12
13 namespace extensions {
14 class Extension;
15 }
16
17 namespace task_manager {
18
19 int Resource::GetRoutingID() const {
20 return 0;
21 }
22
23 bool Resource::ReportsCacheStats() const {
24 return false;
25 }
26
27 blink::WebCache::ResourceTypeStats Resource::GetWebCoreCacheStats() const {
28 return blink::WebCache::ResourceTypeStats();
29 }
30
31 bool Resource::ReportsSqliteMemoryUsed() const {
32 return false;
33 }
34
35 size_t Resource::SqliteMemoryUsedBytes() const {
36 return 0;
37 }
38
39 bool Resource::ReportsV8MemoryStats() const {
40 return false;
41 }
42
43 size_t Resource::GetV8MemoryAllocated() const {
44 return 0;
45 }
46
47 size_t Resource::GetV8MemoryUsed() const {
48 return 0;
49 }
50
51 content::WebContents* Resource::GetWebContents() const {
52 return NULL;
53 }
54
55 } // namespace task_manager
OLDNEW
« no previous file with comments | « chrome/browser/task_manager/resource_provider.h ('k') | chrome/browser/task_manager/tab_contents_information.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698