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

Side by Side Diff: chrome/browser/task_manager/resource_provider.cc

Issue 442303002: DevTools: migrate DevTools APIs to use WebContents instead of RenderViewHost. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review comments addressed. Created 6 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 | Annotate | Revision Log
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698