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

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

Issue 2962353002: Add probe for V8.Complie (Closed)
Patch Set: remove implementation Created 3 years, 5 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 void willRunJavaScriptDialog(LocalFrame* frame, const String& message, ChromeC lient::DialogType dialogType); 145 void willRunJavaScriptDialog(LocalFrame* frame, const String& message, ChromeC lient::DialogType dialogType);
146 void didRunJavaScriptDialog(LocalFrame* frame, bool result); 146 void didRunJavaScriptDialog(LocalFrame* frame, bool result);
147 void documentWriteFetchScript([Keep] Document*); 147 void documentWriteFetchScript([Keep] Document*);
148 void didChangeViewport(LocalFrame* document); 148 void didChangeViewport(LocalFrame* document);
149 void breakableLocation(ExecutionContext* context, const char* name); 149 void breakableLocation(ExecutionContext* context, const char* name);
150 RecalculateStyle(Document* document); 150 RecalculateStyle(Document* document);
151 UpdateLayout(Document*); 151 UpdateLayout(Document*);
152 ExecuteScript([Keep] ExecutionContext* context); 152 ExecuteScript([Keep] ExecutionContext* context);
153 CallFunction([Keep] ExecutionContext* context, v8::Local<v8::Function> functio n, int depth = 0); 153 CallFunction([Keep] ExecutionContext* context, v8::Local<v8::Function> functio n, int depth = 0);
154 UserCallback([Keep] ExecutionContext* context, const char* name, const AtomicS tring& atomicName, bool recurring, EventTarget* eventTarget = nullptr); 154 UserCallback([Keep] ExecutionContext* context, const char* name, const AtomicS tring& atomicName, bool recurring, EventTarget* eventTarget = nullptr);
155 V8Compile([Keep] ExecutionContext* context, const String& file_name, int line, int column);
155 ParseHTML(Document* document, HTMLDocumentParser* parser); 156 ParseHTML(Document* document, HTMLDocumentParser* parser);
156 void forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseudoS tate, bool* result); 157 void forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseudoS tate, bool* result);
157 void shouldWaitForDebuggerOnWorkerStart(ExecutionContext* context, bool* resul t); 158 void shouldWaitForDebuggerOnWorkerStart(ExecutionContext* context, bool* resul t);
158 void shouldForceCORSPreflight(Document*, bool* result); 159 void shouldForceCORSPreflight(Document*, bool* result);
159 void shouldBlockRequest(ExecutionContext*, const ResourceRequest&, bool* resul t); 160 void shouldBlockRequest(ExecutionContext*, const ResourceRequest&, bool* resul t);
160 } 161 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698