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

Side by Side Diff: Source/core/testing/Internals.h

Issue 429853002: IDL: Add build target for IDL dictionary impl generation in core (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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
« no previous file with comments | « Source/core/testing/InternalDictionary.idl ('k') | Source/core/testing/Internals.cpp » ('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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2013 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 30 matching lines...) Expand all
41 #include "wtf/text/WTFString.h" 41 #include "wtf/text/WTFString.h"
42 42
43 namespace blink { 43 namespace blink {
44 44
45 class CanvasRenderingContext2D; 45 class CanvasRenderingContext2D;
46 class ClientRect; 46 class ClientRect;
47 class ClientRectList; 47 class ClientRectList;
48 class WebKitPoint; 48 class WebKitPoint;
49 class DOMStringList; 49 class DOMStringList;
50 class LocalDOMWindow; 50 class LocalDOMWindow;
51 class DictionaryTest;
51 class Document; 52 class Document;
52 class DocumentMarker; 53 class DocumentMarker;
53 class Element; 54 class Element;
54 class ExceptionState; 55 class ExceptionState;
55 class ExecutionContext; 56 class ExecutionContext;
56 class GCObservation; 57 class GCObservation;
57 class HTMLElement; 58 class HTMLElement;
58 class HTMLMediaElement; 59 class HTMLMediaElement;
59 class InternalProfilers; 60 class InternalProfilers;
60 class InternalRuntimeFlags; 61 class InternalRuntimeFlags;
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 void setIsCursorVisible(Document*, bool, ExceptionState&); 245 void setIsCursorVisible(Document*, bool, ExceptionState&);
245 246
246 void mediaPlayerRequestFullscreen(HTMLMediaElement*); 247 void mediaPlayerRequestFullscreen(HTMLMediaElement*);
247 double effectiveMediaVolume(HTMLMediaElement*); 248 double effectiveMediaVolume(HTMLMediaElement*);
248 249
249 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme) ; 250 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme) ;
250 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String& scheme); 251 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String& scheme);
251 252
252 PassRefPtrWillBeRawPtr<TypeConversions> typeConversions() const; 253 PassRefPtrWillBeRawPtr<TypeConversions> typeConversions() const;
253 PrivateScriptTest* privateScriptTest() const; 254 PrivateScriptTest* privateScriptTest() const;
255 DictionaryTest* dictionaryTest() const;
254 256
255 Vector<String> getReferencedFilePaths() const; 257 Vector<String> getReferencedFilePaths() const;
256 258
257 void startTrackingRepaints(Document*, ExceptionState&); 259 void startTrackingRepaints(Document*, ExceptionState&);
258 void stopTrackingRepaints(Document*, ExceptionState&); 260 void stopTrackingRepaints(Document*, ExceptionState&);
259 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(ExceptionStat e&); 261 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(ExceptionStat e&);
260 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(Node*, Except ionState&); 262 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(Node*, Except ionState&);
261 void forceFullRepaint(Document*, ExceptionState&); 263 void forceFullRepaint(Document*, ExceptionState&);
262 264
263 PassRefPtrWillBeRawPtr<ClientRectList> draggableRegions(Document*, Exception State&); 265 PassRefPtrWillBeRawPtr<ClientRectList> draggableRegions(Document*, Exception State&);
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag gable, ExceptionState&); 325 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag gable, ExceptionState&);
324 326
325 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&); 327 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&);
326 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags; 328 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags;
327 RefPtrWillBeMember<InternalProfilers> m_profilers; 329 RefPtrWillBeMember<InternalProfilers> m_profilers;
328 }; 330 };
329 331
330 } // namespace blink 332 } // namespace blink
331 333
332 #endif 334 #endif
OLDNEW
« no previous file with comments | « Source/core/testing/InternalDictionary.idl ('k') | Source/core/testing/Internals.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698