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

Side by Side Diff: third_party/WebKit/Source/core/probe/CoreProbes.pidl

Issue 2793423002: [instrumentation] Move "include" section from PIDL to JSON5 config (Closed)
Patch Set: Created 3 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 * 49 *
50 * paramList: C++ parameter list with optional names. Names will be deduced fr om types if omitted but you have to 50 * paramList: C++ parameter list with optional names. Names will be deduced fr om types if omitted but you have to
51 * specify explicit names for multiple parameters of the same type. 51 * specify explicit names for multiple parameters of the same type.
52 * 52 *
53 * Parameters with type PassRefPtr<T> are converted to raw pointers, 53 * Parameters with type PassRefPtr<T> are converted to raw pointers,
54 * so reference will not be passed or released until all agents are notified. 54 * so reference will not be passed or released until all agents are notified.
55 */ 55 */
56 56
57 interface CoreProbes { 57 interface CoreProbes {
58 58
59 #include "core/animation/Animation.h"
60 #include "core/dom/CharacterData.h"
61 #include "core/dom/PseudoElement.h"
62 #include "core/html/HTMLSlotElement.h"
63
64 class ConsoleMessage; 59 class ConsoleMessage;
65 class HTMLDocumentParser; 60 class HTMLDocumentParser;
66 class ThreadableLoaderClient; 61 class ThreadableLoaderClient;
67 class WebSocketHandshakeRequest; 62 class WebSocketHandshakeRequest;
68 class WebSocketHandshakeResponse; 63 class WebSocketHandshakeResponse;
69 class WorkerInspectorProxy; 64 class WorkerInspectorProxy;
70 class XMLHttpRequest; 65 class XMLHttpRequest;
71 66
72 void didClearDocumentOfWindowObject([Keep] LocalFrame*); 67 void didClearDocumentOfWindowObject([Keep] LocalFrame*);
73 void willInsertDOMNode([Keep] Node* parent); 68 void willInsertDOMNode([Keep] Node* parent);
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 void documentWriteFetchScript([Keep] Document*); 150 void documentWriteFetchScript([Keep] Document*);
156 void didChangeViewport(LocalFrame* document); 151 void didChangeViewport(LocalFrame* document);
157 void breakableLocation(ExecutionContext* context, const char* name); 152 void breakableLocation(ExecutionContext* context, const char* name);
158 RecalculateStyle(Document* document); 153 RecalculateStyle(Document* document);
159 UpdateLayout(Document*); 154 UpdateLayout(Document*);
160 ExecuteScript([Keep] ExecutionContext* context); 155 ExecuteScript([Keep] ExecutionContext* context);
161 CallFunction([Keep] ExecutionContext* context, v8::Local<v8::Function> functio n, int depth = 0); 156 CallFunction([Keep] ExecutionContext* context, v8::Local<v8::Function> functio n, int depth = 0);
162 UserCallback([Keep] ExecutionContext* context, const char* name, const AtomicS tring& atomicName, bool recurring, EventTarget* eventTarget = nullptr); 157 UserCallback([Keep] ExecutionContext* context, const char* name, const AtomicS tring& atomicName, bool recurring, EventTarget* eventTarget = nullptr);
163 ParseHTML(Document* document, HTMLDocumentParser* parser); 158 ParseHTML(Document* document, HTMLDocumentParser* parser);
164 } 159 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/probe/CoreProbes.json5 ('k') | third_party/WebKit/Source/platform/probe/PlatformProbes.json5 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698