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

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

Issue 14307014: Absolutify paths to workers/, workers/chromium/, xml/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: in 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 28 matching lines...) Expand all
39 #include "InspectorConsoleAgent.h" 39 #include "InspectorConsoleAgent.h"
40 #include "InspectorFrontend.h" 40 #include "InspectorFrontend.h"
41 #include "InspectorFrontendChannel.h" 41 #include "InspectorFrontendChannel.h"
42 #include "InspectorHeapProfilerAgent.h" 42 #include "InspectorHeapProfilerAgent.h"
43 #include "InspectorProfilerAgent.h" 43 #include "InspectorProfilerAgent.h"
44 #include "InspectorState.h" 44 #include "InspectorState.h"
45 #include "InspectorStateClient.h" 45 #include "InspectorStateClient.h"
46 #include "InspectorTimelineAgent.h" 46 #include "InspectorTimelineAgent.h"
47 #include "InstrumentingAgents.h" 47 #include "InstrumentingAgents.h"
48 #include "WorkerConsoleAgent.h" 48 #include "WorkerConsoleAgent.h"
49 #include "WorkerContext.h"
50 #include "WorkerDebuggerAgent.h" 49 #include "WorkerDebuggerAgent.h"
51 #include "WorkerReportingProxy.h"
52 #include "WorkerRuntimeAgent.h" 50 #include "WorkerRuntimeAgent.h"
53 #include "WorkerThread.h" 51 #include "core/workers/WorkerContext.h"
52 #include "core/workers/WorkerReportingProxy.h"
53 #include "core/workers/WorkerThread.h"
54 #include <wtf/PassOwnPtr.h> 54 #include <wtf/PassOwnPtr.h>
55 55
56 namespace WebCore { 56 namespace WebCore {
57 57
58 namespace { 58 namespace {
59 59
60 class PageInspectorProxy : public InspectorFrontendChannel { 60 class PageInspectorProxy : public InspectorFrontendChannel {
61 WTF_MAKE_FAST_ALLOCATED; 61 WTF_MAKE_FAST_ALLOCATED;
62 public: 62 public:
63 explicit PageInspectorProxy(WorkerContext* workerContext) : m_workerContext( workerContext) { } 63 explicit PageInspectorProxy(WorkerContext* workerContext) : m_workerContext( workerContext) { }
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 m_backendDispatcher->dispatch(message); 166 m_backendDispatcher->dispatch(message);
167 } 167 }
168 168
169 void WorkerInspectorController::resume() 169 void WorkerInspectorController::resume()
170 { 170 {
171 ErrorString unused; 171 ErrorString unused;
172 m_runtimeAgent->run(&unused); 172 m_runtimeAgent->run(&unused);
173 } 173 }
174 174
175 } 175 }
OLDNEW
« no previous file with comments | « Source/core/inspector/WorkerDebuggerAgent.cpp ('k') | Source/core/inspector/WorkerRuntimeAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698