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

Side by Side Diff: Source/core/inspector/InspectorProfilerAgent.cpp

Issue 14519003: Absolutify paths to dom/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix testrunner Created 7 years, 8 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 /* 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 24 matching lines...) Expand all
35 #include "InjectedScriptHost.h" 35 #include "InjectedScriptHost.h"
36 #include "InspectorConsoleAgent.h" 36 #include "InspectorConsoleAgent.h"
37 #include "InspectorFrontend.h" 37 #include "InspectorFrontend.h"
38 #include "InspectorState.h" 38 #include "InspectorState.h"
39 #include "InspectorValues.h" 39 #include "InspectorValues.h"
40 #include "InstrumentingAgents.h" 40 #include "InstrumentingAgents.h"
41 #include "PageScriptDebugServer.h" 41 #include "PageScriptDebugServer.h"
42 #include "ScriptObject.h" 42 #include "ScriptObject.h"
43 #include "ScriptProfile.h" 43 #include "ScriptProfile.h"
44 #include "ScriptProfiler.h" 44 #include "ScriptProfiler.h"
45 #include "WebCoreMemoryInstrumentation.h"
46 #include "WorkerScriptDebugServer.h" 45 #include "WorkerScriptDebugServer.h"
46 #include "core/dom/WebCoreMemoryInstrumentation.h"
47 #include "core/page/Console.h" 47 #include "core/page/Console.h"
48 #include "core/page/ConsoleTypes.h" 48 #include "core/page/ConsoleTypes.h"
49 #include "core/page/Page.h" 49 #include "core/page/Page.h"
50 #include "core/platform/KURL.h" 50 #include "core/platform/KURL.h"
51 #include <wtf/CurrentTime.h> 51 #include <wtf/CurrentTime.h>
52 #include <wtf/MemoryInstrumentationHashMap.h> 52 #include <wtf/MemoryInstrumentationHashMap.h>
53 #include <wtf/OwnPtr.h> 53 #include <wtf/OwnPtr.h>
54 #include <wtf/text/StringConcatenate.h> 54 #include <wtf/text/StringConcatenate.h>
55 55
56 namespace WebCore { 56 namespace WebCore {
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 360
361 void InspectorProfilerAgent::didProcessTask() 361 void InspectorProfilerAgent::didProcessTask()
362 { 362 {
363 if (!m_profileNameIdleTimeMap || !m_profileNameIdleTimeMap->size()) 363 if (!m_profileNameIdleTimeMap || !m_profileNameIdleTimeMap->size())
364 return; 364 return;
365 m_previousTaskEndTime = WTF::monotonicallyIncreasingTime(); 365 m_previousTaskEndTime = WTF::monotonicallyIncreasingTime();
366 } 366 }
367 367
368 } // namespace WebCore 368 } // namespace WebCore
369 369
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorPageAgent.cpp ('k') | Source/core/inspector/InspectorResourceAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698