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

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

Issue 286143010: Remove knowledge of nacl from content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
63 bool Resource::CanInspect() const { 59 bool Resource::CanInspect() const {
64 return false; 60 return false;
65 } 61 }
66 62
67 content::WebContents* Resource::GetWebContents() const { 63 content::WebContents* Resource::GetWebContents() const {
68 return NULL; 64 return NULL;
69 } 65 }
70 66
71 } // namespace task_manager 67 } // namespace task_manager
OLDNEW
« no previous file with comments | « chrome/browser/task_manager/resource_provider.h ('k') | chrome/browser/task_manager/task_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698