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

Side by Side Diff: third_party/WebKit/Source/core/inspector/MainThreadDebugger.cpp

Issue 2251343003: [DevTools] Generate separate copies of inspector_protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: win compile Created 4 years, 3 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
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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 #include "core/frame/LocalDOMWindow.h" 50 #include "core/frame/LocalDOMWindow.h"
51 #include "core/frame/LocalFrame.h" 51 #include "core/frame/LocalFrame.h"
52 #include "core/frame/Settings.h" 52 #include "core/frame/Settings.h"
53 #include "core/frame/UseCounter.h" 53 #include "core/frame/UseCounter.h"
54 #include "core/inspector/ConsoleMessage.h" 54 #include "core/inspector/ConsoleMessage.h"
55 #include "core/inspector/ConsoleMessageStorage.h" 55 #include "core/inspector/ConsoleMessageStorage.h"
56 #include "core/inspector/IdentifiersFactory.h" 56 #include "core/inspector/IdentifiersFactory.h"
57 #include "core/inspector/InspectedFrames.h" 57 #include "core/inspector/InspectedFrames.h"
58 #include "core/inspector/InspectorTaskRunner.h" 58 #include "core/inspector/InspectorTaskRunner.h"
59 #include "core/inspector/V8InspectorString.h" 59 #include "core/inspector/V8InspectorString.h"
60 #include "core/inspector/protocol/Protocol.h"
60 #include "core/timing/MemoryInfo.h" 61 #include "core/timing/MemoryInfo.h"
61 #include "core/workers/MainThreadWorkletGlobalScope.h" 62 #include "core/workers/MainThreadWorkletGlobalScope.h"
62 #include "core/xml/XPathEvaluator.h" 63 #include "core/xml/XPathEvaluator.h"
63 #include "core/xml/XPathResult.h" 64 #include "core/xml/XPathResult.h"
64 #include "platform/UserGestureIndicator.h" 65 #include "platform/UserGestureIndicator.h"
65 #include "platform/v8_inspector/public/V8Inspector.h" 66 #include "platform/v8_inspector/public/V8Inspector.h"
66 #include "wtf/PtrUtil.h" 67 #include "wtf/PtrUtil.h"
67 #include "wtf/ThreadingPrimitives.h" 68 #include "wtf/ThreadingPrimitives.h"
68 #include <memory> 69 #include <memory>
69 70
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 return; 410 return;
410 if (!createDataPropertyInArray(context, nodes, index++, toV8(node, i nfo.Holder(), info.GetIsolate())).FromMaybe(false)) 411 if (!createDataPropertyInArray(context, nodes, index++, toV8(node, i nfo.Holder(), info.GetIsolate())).FromMaybe(false))
411 return; 412 return;
412 } 413 }
413 info.GetReturnValue().Set(nodes); 414 info.GetReturnValue().Set(nodes);
414 } 415 }
415 exceptionState.throwIfNeeded(); 416 exceptionState.throwIfNeeded();
416 } 417 }
417 418
418 } // namespace blink 419 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698