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

Side by Side Diff: Source/bindings/v8/custom/V8NodeCustom.cpp

Issue 143673005: Remove Entity interface (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 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/bindings/tests/results/V8TestObjectPython.cpp ('k') | Source/core/core.gypi » ('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) 2007-2009 Google Inc. All rights reserved. 2 * Copyright (C) 2007-2009 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 20 matching lines...) Expand all
31 #include "config.h" 31 #include "config.h"
32 #include "V8Node.h" 32 #include "V8Node.h"
33 33
34 #include "V8Attr.h" 34 #include "V8Attr.h"
35 #include "V8CDATASection.h" 35 #include "V8CDATASection.h"
36 #include "V8Comment.h" 36 #include "V8Comment.h"
37 #include "V8Document.h" 37 #include "V8Document.h"
38 #include "V8DocumentFragment.h" 38 #include "V8DocumentFragment.h"
39 #include "V8DocumentType.h" 39 #include "V8DocumentType.h"
40 #include "V8Element.h" 40 #include "V8Element.h"
41 #include "V8Entity.h"
42 #include "V8HTMLElement.h" 41 #include "V8HTMLElement.h"
43 #include "V8Notation.h" 42 #include "V8Notation.h"
44 #include "V8ProcessingInstruction.h" 43 #include "V8ProcessingInstruction.h"
45 #include "V8SVGElement.h" 44 #include "V8SVGElement.h"
46 #include "V8ShadowRoot.h" 45 #include "V8ShadowRoot.h"
47 #include "V8Text.h" 46 #include "V8Text.h"
48 #include "bindings/v8/ExceptionState.h" 47 #include "bindings/v8/ExceptionState.h"
49 #include "bindings/v8/V8AbstractEventListener.h" 48 #include "bindings/v8/V8AbstractEventListener.h"
50 #include "bindings/v8/V8Binding.h" 49 #include "bindings/v8/V8Binding.h"
51 #include "bindings/v8/V8EventListener.h" 50 #include "bindings/v8/V8EventListener.h"
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 return wrap(toDocumentType(impl), creationContext, isolate); 147 return wrap(toDocumentType(impl), creationContext, isolate);
149 case Node::DOCUMENT_FRAGMENT_NODE: 148 case Node::DOCUMENT_FRAGMENT_NODE:
150 if (impl->isShadowRoot()) 149 if (impl->isShadowRoot())
151 return wrap(toShadowRoot(impl), creationContext, isolate); 150 return wrap(toShadowRoot(impl), creationContext, isolate);
152 return wrap(toDocumentFragment(impl), creationContext, isolate); 151 return wrap(toDocumentFragment(impl), creationContext, isolate);
153 } 152 }
154 ASSERT_NOT_REACHED(); 153 ASSERT_NOT_REACHED();
155 return V8Node::createWrapper(impl, creationContext, isolate); 154 return V8Node::createWrapper(impl, creationContext, isolate);
156 } 155 }
157 } // namespace WebCore 156 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/bindings/tests/results/V8TestObjectPython.cpp ('k') | Source/core/core.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698