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

Side by Side Diff: Source/core/inspector/InspectorProfilerAgent.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/inspector/InspectorDebuggerAgent.h ('k') | Source/core/page/ChromeClient.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) 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2010 Google Inc. All rights reserved. 3 * Copyright (C) 2010 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 22 matching lines...) Expand all
33 #include "InspectorFrontend.h" 33 #include "InspectorFrontend.h"
34 #include "bindings/v8/ScriptProfiler.h" 34 #include "bindings/v8/ScriptProfiler.h"
35 #include "core/inspector/ConsoleAPITypes.h" 35 #include "core/inspector/ConsoleAPITypes.h"
36 #include "core/inspector/InjectedScript.h" 36 #include "core/inspector/InjectedScript.h"
37 #include "core/inspector/InjectedScriptHost.h" 37 #include "core/inspector/InjectedScriptHost.h"
38 #include "core/inspector/InspectorConsoleAgent.h" 38 #include "core/inspector/InspectorConsoleAgent.h"
39 #include "core/inspector/InspectorState.h" 39 #include "core/inspector/InspectorState.h"
40 #include "core/inspector/InstrumentingAgents.h" 40 #include "core/inspector/InstrumentingAgents.h"
41 #include "core/inspector/ScriptCallStack.h" 41 #include "core/inspector/ScriptCallStack.h"
42 #include "core/inspector/ScriptProfile.h" 42 #include "core/inspector/ScriptProfile.h"
43 #include "core/page/ConsoleTypes.h" 43 #include "core/frame/ConsoleTypes.h"
44 #include "wtf/CurrentTime.h" 44 #include "wtf/CurrentTime.h"
45 #include "wtf/text/StringConcatenate.h" 45 #include "wtf/text/StringConcatenate.h"
46 46
47 namespace WebCore { 47 namespace WebCore {
48 48
49 namespace ProfilerAgentState { 49 namespace ProfilerAgentState {
50 static const char samplingInterval[] = "samplingInterval"; 50 static const char samplingInterval[] = "samplingInterval";
51 static const char userInitiatedProfiling[] = "userInitiatedProfiling"; 51 static const char userInitiatedProfiling[] = "userInitiatedProfiling";
52 static const char profilerEnabled[] = "profilerEnabled"; 52 static const char profilerEnabled[] = "profilerEnabled";
53 static const char profileHeadersRequested[] = "profileHeadersRequested"; 53 static const char profileHeadersRequested[] = "profileHeadersRequested";
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 idleStarted(); 313 idleStarted();
314 } 314 }
315 315
316 void InspectorProfilerAgent::didLeaveNestedRunLoop() 316 void InspectorProfilerAgent::didLeaveNestedRunLoop()
317 { 317 {
318 idleFinished(); 318 idleFinished();
319 } 319 }
320 320
321 } // namespace WebCore 321 } // namespace WebCore
322 322
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorDebuggerAgent.h ('k') | Source/core/page/ChromeClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698