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