| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 } | 49 } |
| 50 | 50 |
| 51 size_t Resource::GetV8MemoryAllocated() const { | 51 size_t Resource::GetV8MemoryAllocated() const { |
| 52 return 0; | 52 return 0; |
| 53 } | 53 } |
| 54 | 54 |
| 55 size_t Resource::GetV8MemoryUsed() const { | 55 size_t Resource::GetV8MemoryUsed() const { |
| 56 return 0; | 56 return 0; |
| 57 } | 57 } |
| 58 | 58 |
| 59 int Resource::GetNaClDebugStubPort() const { |
| 60 return 0; |
| 61 } |
| 62 |
| 59 bool Resource::CanInspect() const { | 63 bool Resource::CanInspect() const { |
| 60 return false; | 64 return false; |
| 61 } | 65 } |
| 62 | 66 |
| 63 content::WebContents* Resource::GetWebContents() const { | 67 content::WebContents* Resource::GetWebContents() const { |
| 64 return NULL; | 68 return NULL; |
| 65 } | 69 } |
| 66 | 70 |
| 67 } // namespace task_manager | 71 } // namespace task_manager |
| OLD | NEW |