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

Side by Side Diff: sky/engine/core/core.gni

Issue 697773002: Remove Element#attributes. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: fix template binding. Created 6 years, 1 month 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 | « sky/engine/bindings/core/v8/custom/V8NodeCustom.cpp ('k') | sky/engine/core/dom/Attr.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 sky_core_output_dir = "$root_gen_dir/sky/core" 5 sky_core_output_dir = "$root_gen_dir/sky/core"
6 6
7 sky_core_files = [ 7 sky_core_files = [
8 "Init.cpp", 8 "Init.cpp",
9 "Init.h", 9 "Init.h",
10 "animation/ActiveAnimations.cpp", 10 "animation/ActiveAnimations.cpp",
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
413 "dom/Microtask.h", 413 "dom/Microtask.h",
414 "dom/MutationCallback.h", 414 "dom/MutationCallback.h",
415 "dom/MutationObserver.cpp", 415 "dom/MutationObserver.cpp",
416 "dom/MutationObserver.h", 416 "dom/MutationObserver.h",
417 "dom/MutationObserverInterestGroup.cpp", 417 "dom/MutationObserverInterestGroup.cpp",
418 "dom/MutationObserverInterestGroup.h", 418 "dom/MutationObserverInterestGroup.h",
419 "dom/MutationObserverRegistration.cpp", 419 "dom/MutationObserverRegistration.cpp",
420 "dom/MutationObserverRegistration.h", 420 "dom/MutationObserverRegistration.h",
421 "dom/MutationRecord.cpp", 421 "dom/MutationRecord.cpp",
422 "dom/MutationRecord.h", 422 "dom/MutationRecord.h",
423 "dom/NamedNodeMap.cpp",
424 "dom/Node.cpp", 423 "dom/Node.cpp",
425 "dom/NodeRareData.cpp", 424 "dom/NodeRareData.cpp",
426 "dom/NodeRareData.h", 425 "dom/NodeRareData.h",
427 "dom/NodeRenderStyle.h", 426 "dom/NodeRenderStyle.h",
428 "dom/NodeRenderingTraversal.cpp", 427 "dom/NodeRenderingTraversal.cpp",
429 "dom/NodeRenderingTraversal.h", 428 "dom/NodeRenderingTraversal.h",
430 "dom/NodeTraversal.cpp", 429 "dom/NodeTraversal.cpp",
431 "dom/NodeTraversal.h", 430 "dom/NodeTraversal.h",
432 "dom/NodeWithIndex.h", 431 "dom/NodeWithIndex.h",
433 "dom/ParentNode.h", 432 "dom/ParentNode.h",
(...skipping 795 matching lines...) Expand 10 before | Expand all | Expand 10 after
1229 "dom/DOMException.idl", 1228 "dom/DOMException.idl",
1230 "dom/DOMImplementation.idl", 1229 "dom/DOMImplementation.idl",
1231 "dom/DOMSettableTokenList.idl", 1230 "dom/DOMSettableTokenList.idl",
1232 "dom/DOMStringList.idl", 1231 "dom/DOMStringList.idl",
1233 "dom/DOMTokenList.idl", 1232 "dom/DOMTokenList.idl",
1234 "dom/Document.idl", 1233 "dom/Document.idl",
1235 "dom/DocumentFragment.idl", 1234 "dom/DocumentFragment.idl",
1236 "dom/Element.idl", 1235 "dom/Element.idl",
1237 "dom/MutationObserver.idl", 1236 "dom/MutationObserver.idl",
1238 "dom/MutationRecord.idl", 1237 "dom/MutationRecord.idl",
1239 "dom/NamedNodeMap.idl",
1240 "dom/Node.idl", 1238 "dom/Node.idl",
1241 "dom/NodeList.idl", 1239 "dom/NodeList.idl",
1242 "dom/Range.idl", 1240 "dom/Range.idl",
1243 "dom/RequestAnimationFrameCallback.idl", 1241 "dom/RequestAnimationFrameCallback.idl",
1244 "dom/Text.idl", 1242 "dom/Text.idl",
1245 "dom/Touch.idl", 1243 "dom/Touch.idl",
1246 "dom/TouchList.idl", 1244 "dom/TouchList.idl",
1247 "dom/URL.idl", 1245 "dom/URL.idl",
1248 "dom/shadow/ShadowRoot.idl", 1246 "dom/shadow/ShadowRoot.idl",
1249 "editing/Selection.idl", 1247 "editing/Selection.idl",
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
1379 "events/ResourceProgressEvent.idl", 1377 "events/ResourceProgressEvent.idl",
1380 "events/TextEvent.idl", 1378 "events/TextEvent.idl",
1381 "events/TouchEvent.idl", 1379 "events/TouchEvent.idl",
1382 "events/TransitionEvent.idl", 1380 "events/TransitionEvent.idl",
1383 "events/UIEvent.idl", 1381 "events/UIEvent.idl",
1384 "events/AnimationEvent.idl", 1382 "events/AnimationEvent.idl",
1385 "events/WheelEvent.idl", 1383 "events/WheelEvent.idl",
1386 "html/MediaKeyEvent.idl", 1384 "html/MediaKeyEvent.idl",
1387 "html/canvas/WebGLContextEvent.idl", 1385 "html/canvas/WebGLContextEvent.idl",
1388 ], "abspath") 1386 ], "abspath")
OLDNEW
« no previous file with comments | « sky/engine/bindings/core/v8/custom/V8NodeCustom.cpp ('k') | sky/engine/core/dom/Attr.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698