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

Unified Diff: Source/core/inspector/ScriptProfile.h

Issue 15816002: Remove console.profiles from window.console API (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/inspector/ScriptProfile.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/ScriptProfile.h
diff --git a/Source/core/inspector/ScriptProfile.h b/Source/core/inspector/ScriptProfile.h
index e2ee6b623f2809ee0b44b96cac7368a81be3e8be..de589314801533416929ebe9af902d05080e8b31 100644
--- a/Source/core/inspector/ScriptProfile.h
+++ b/Source/core/inspector/ScriptProfile.h
@@ -32,8 +32,6 @@
#define ScriptProfile_h
#include "InspectorTypeBuilder.h"
-#include "bindings/v8/ScriptWrappable.h"
-#include "core/inspector/ScriptProfileNode.h"
#include "wtf/RefCounted.h"
#include "wtf/text/WTFString.h"
@@ -45,7 +43,7 @@ namespace WebCore {
class InspectorObject;
-class ScriptProfile : public RefCounted<ScriptProfile>, public ScriptWrappable {
+class ScriptProfile : public RefCounted<ScriptProfile> {
public:
static PassRefPtr<ScriptProfile> create(const v8::CpuProfile* profile, double idleTime)
{
@@ -55,7 +53,6 @@ public:
String title() const;
unsigned int uid() const;
- PassRefPtr<ScriptProfileNode> head() const;
double idleTime() const;
PassRefPtr<TypeBuilder::Profiler::CPUProfileNode> buildInspectorObjectForHead() const;
@@ -66,7 +63,6 @@ private:
: m_profile(profile)
, m_idleTime(idleTime)
{
- ScriptWrappable::init(this);
}
const v8::CpuProfile* m_profile;
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/inspector/ScriptProfile.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698