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

Side by Side Diff: Source/core/workers/WorkerConsole.cpp

Issue 26848007: Move Navigation Timing and other various window-level objects out of page/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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
« no previous file with comments | « Source/core/workers/WorkerConsole.h ('k') | Source/core/workers/WorkerReportingProxy.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007 Apple Inc. All rights reserved. 2 * Copyright (C) 2007 Apple Inc. All rights reserved.
3 * Copyright (C) 2013 Google Inc. All rights reserved. 3 * Copyright (C) 2013 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 21 matching lines...) Expand all
32 #include "core/workers/WorkerConsole.h" 32 #include "core/workers/WorkerConsole.h"
33 33
34 #include "bindings/v8/ScriptCallStackFactory.h" 34 #include "bindings/v8/ScriptCallStackFactory.h"
35 #include "bindings/v8/ScriptProfiler.h" 35 #include "bindings/v8/ScriptProfiler.h"
36 #include "core/inspector/ConsoleAPITypes.h" 36 #include "core/inspector/ConsoleAPITypes.h"
37 #include "core/inspector/InspectorConsoleInstrumentation.h" 37 #include "core/inspector/InspectorConsoleInstrumentation.h"
38 #include "core/inspector/ScriptArguments.h" 38 #include "core/inspector/ScriptArguments.h"
39 #include "core/inspector/ScriptCallStack.h" 39 #include "core/inspector/ScriptCallStack.h"
40 #include "core/inspector/ScriptProfile.h" 40 #include "core/inspector/ScriptProfile.h"
41 #include "core/inspector/WorkerInspectorController.h" 41 #include "core/inspector/WorkerInspectorController.h"
42 #include "core/page/ConsoleBase.h" 42 #include "core/frame/ConsoleBase.h"
43 #include "core/page/ConsoleTypes.h" 43 #include "core/frame/ConsoleTypes.h"
44 #include "core/workers/WorkerGlobalScope.h" 44 #include "core/workers/WorkerGlobalScope.h"
45 #include "core/workers/WorkerReportingProxy.h" 45 #include "core/workers/WorkerReportingProxy.h"
46 #include "core/workers/WorkerThread.h" 46 #include "core/workers/WorkerThread.h"
47 #include "platform/TraceEvent.h" 47 #include "platform/TraceEvent.h"
48 48
49 #include "wtf/text/WTFString.h" 49 #include "wtf/text/WTFString.h"
50 50
51 namespace WebCore { 51 namespace WebCore {
52 52
53 WorkerConsole::WorkerConsole(WorkerGlobalScope* scope) 53 WorkerConsole::WorkerConsole(WorkerGlobalScope* scope)
(...skipping 21 matching lines...) Expand all
75 75
76 bool WorkerConsole::profilerEnabled() 76 bool WorkerConsole::profilerEnabled()
77 { 77 {
78 return InspectorInstrumentation::profilerEnabled(m_scope); 78 return InspectorInstrumentation::profilerEnabled(m_scope);
79 } 79 }
80 80
81 // FIXME: add memory getter 81 // FIXME: add memory getter
82 82
83 } // namespace WebCore 83 } // namespace WebCore
84 84
OLDNEW
« no previous file with comments | « Source/core/workers/WorkerConsole.h ('k') | Source/core/workers/WorkerReportingProxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698