OLD | NEW |
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/task_manager/resource_provider.h" | 5 #include "chrome/browser/task_manager/resource_provider.h" |
6 | 6 |
7 #include "third_party/WebKit/public/web/WebCache.h" | 7 #include "third_party/WebKit/public/web/WebCache.h" |
8 | 8 |
9 namespace content { | 9 namespace content { |
10 class WebContents; | 10 class WebContents; |
(...skipping 30 matching lines...) Expand all Loading... |
41 } | 41 } |
42 | 42 |
43 size_t Resource::GetV8MemoryAllocated() const { | 43 size_t Resource::GetV8MemoryAllocated() const { |
44 return 0; | 44 return 0; |
45 } | 45 } |
46 | 46 |
47 size_t Resource::GetV8MemoryUsed() const { | 47 size_t Resource::GetV8MemoryUsed() const { |
48 return 0; | 48 return 0; |
49 } | 49 } |
50 | 50 |
51 bool Resource::CanInspect() const { | |
52 return false; | |
53 } | |
54 | |
55 content::WebContents* Resource::GetWebContents() const { | 51 content::WebContents* Resource::GetWebContents() const { |
56 return NULL; | 52 return NULL; |
57 } | 53 } |
58 | 54 |
59 } // namespace task_manager | 55 } // namespace task_manager |
OLD | NEW |