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

Side by Side Diff: Source/core/inspector/InspectorInstrumentation.h

Issue 477313002: DevTools: Extract WorkerInspectorProxy interface from WorkerGlobalScopeProxy. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Comments addressed. Created 6 years, 4 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/core.gypi ('k') | Source/core/inspector/InspectorInstrumentation.idl » ('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 Google Inc. All rights reserved. 2 * Copyright (C) 2010 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 class Element; 56 class Element;
57 class EventTarget; 57 class EventTarget;
58 class ExecutionContext; 58 class ExecutionContext;
59 class GraphicsContext; 59 class GraphicsContext;
60 class GraphicsLayer; 60 class GraphicsLayer;
61 class InspectorTimelineAgent; 61 class InspectorTimelineAgent;
62 class InstrumentingAgents; 62 class InstrumentingAgents;
63 class RenderLayer; 63 class RenderLayer;
64 class ThreadableLoaderClient; 64 class ThreadableLoaderClient;
65 class WorkerGlobalScope; 65 class WorkerGlobalScope;
66 class WorkerGlobalScopeProxy; 66 class WorkerInspectorProxy;
67 67
68 #define FAST_RETURN_IF_NO_FRONTENDS(value) if (!hasFrontends()) return value; 68 #define FAST_RETURN_IF_NO_FRONTENDS(value) if (!hasFrontends()) return value;
69 69
70 class InspectorInstrumentationCookie { 70 class InspectorInstrumentationCookie {
71 public: 71 public:
72 InspectorInstrumentationCookie(); 72 InspectorInstrumentationCookie();
73 InspectorInstrumentationCookie(InstrumentingAgents*, int); 73 InspectorInstrumentationCookie(InstrumentingAgents*, int);
74 InspectorInstrumentationCookie(const InspectorInstrumentationCookie&); 74 InspectorInstrumentationCookie(const InspectorInstrumentationCookie&);
75 InspectorInstrumentationCookie& operator=(const InspectorInstrumentationCook ie&); 75 InspectorInstrumentationCookie& operator=(const InspectorInstrumentationCook ie&);
76 ~InspectorInstrumentationCookie(); 76 ~InspectorInstrumentationCookie();
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 189
190 } // namespace blink 190 } // namespace blink
191 191
192 #include "core/InspectorInstrumentationInl.h" 192 #include "core/InspectorInstrumentationInl.h"
193 193
194 #include "core/inspector/InspectorInstrumentationCustomInl.h" 194 #include "core/inspector/InspectorInstrumentationCustomInl.h"
195 195
196 #include "core/InspectorOverridesInl.h" 196 #include "core/InspectorOverridesInl.h"
197 197
198 #endif // !defined(InspectorInstrumentation_h) 198 #endif // !defined(InspectorInstrumentation_h)
OLDNEW
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/inspector/InspectorInstrumentation.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698