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

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

Issue 2848243004: Clean up bindings/core/v8 (Part 2) (Closed)
Patch Set: Rebase Created 3 years, 7 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) 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 11 matching lines...) Expand all
22 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 22 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */ 25 */
26 26
27 #ifndef Internals_h 27 #ifndef Internals_h
28 #define Internals_h 28 #define Internals_h
29 29
30 #include "bindings/core/v8/ExceptionState.h" 30 #include "bindings/core/v8/ExceptionState.h"
31 #include "bindings/core/v8/ScriptPromise.h" 31 #include "bindings/core/v8/ScriptPromise.h"
32 #include "bindings/core/v8/ScriptState.h"
33 #include "bindings/core/v8/ScriptValue.h" 32 #include "bindings/core/v8/ScriptValue.h"
34 #include "bindings/core/v8/ScriptWrappable.h"
35 #include "core/css/CSSComputedStyleDeclaration.h" 33 #include "core/css/CSSComputedStyleDeclaration.h"
36 #include "core/page/scrolling/ScrollingCoordinator.h" 34 #include "core/page/scrolling/ScrollingCoordinator.h"
35 #include "platform/bindings/ScriptState.h"
36 #include "platform/bindings/ScriptWrappable.h"
37 #include "platform/heap/Handle.h" 37 #include "platform/heap/Handle.h"
38 #include "platform/wtf/Forward.h" 38 #include "platform/wtf/Forward.h"
39 #include "platform/wtf/text/WTFString.h" 39 #include "platform/wtf/text/WTFString.h"
40 40
41 namespace blink { 41 namespace blink {
42 42
43 class Animation; 43 class Animation;
44 class CallbackFunctionTest; 44 class CallbackFunctionTest;
45 class CanvasRenderingContext; 45 class CanvasRenderingContext;
46 class ClientRect; 46 class ClientRect;
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
564 const String& marker_type, 564 const String& marker_type,
565 unsigned index, 565 unsigned index,
566 ExceptionState&); 566 ExceptionState&);
567 Member<InternalRuntimeFlags> runtime_flags_; 567 Member<InternalRuntimeFlags> runtime_flags_;
568 Member<Document> document_; 568 Member<Document> document_;
569 }; 569 };
570 570
571 } // namespace blink 571 } // namespace blink
572 572
573 #endif // Internals_h 573 #endif // Internals_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698