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

Side by Side Diff: Source/bindings/v8/ScriptController.cpp

Issue 135843008: Remove V8HiddenPropertyName (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008, 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2008, 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2009 Apple Inc. All rights reserved. 3 * Copyright (C) 2009 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 are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * 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 24 matching lines...) Expand all
35 #include "V8Event.h" 35 #include "V8Event.h"
36 #include "V8HTMLElement.h" 36 #include "V8HTMLElement.h"
37 #include "V8Window.h" 37 #include "V8Window.h"
38 #include "bindings/v8/BindingSecurity.h" 38 #include "bindings/v8/BindingSecurity.h"
39 #include "bindings/v8/NPV8Object.h" 39 #include "bindings/v8/NPV8Object.h"
40 #include "bindings/v8/ScriptCallStackFactory.h" 40 #include "bindings/v8/ScriptCallStackFactory.h"
41 #include "bindings/v8/ScriptSourceCode.h" 41 #include "bindings/v8/ScriptSourceCode.h"
42 #include "bindings/v8/ScriptValue.h" 42 #include "bindings/v8/ScriptValue.h"
43 #include "bindings/v8/V8Binding.h" 43 #include "bindings/v8/V8Binding.h"
44 #include "bindings/v8/V8GCController.h" 44 #include "bindings/v8/V8GCController.h"
45 #include "bindings/v8/V8HiddenPropertyName.h"
46 #include "bindings/v8/V8NPObject.h" 45 #include "bindings/v8/V8NPObject.h"
47 #include "bindings/v8/V8PerContextData.h" 46 #include "bindings/v8/V8PerContextData.h"
48 #include "bindings/v8/V8ScriptRunner.h" 47 #include "bindings/v8/V8ScriptRunner.h"
49 #include "bindings/v8/V8WindowShell.h" 48 #include "bindings/v8/V8WindowShell.h"
50 #include "bindings/v8/npruntime_impl.h" 49 #include "bindings/v8/npruntime_impl.h"
51 #include "bindings/v8/npruntime_priv.h" 50 #include "bindings/v8/npruntime_priv.h"
52 #include "core/dom/Document.h" 51 #include "core/dom/Document.h"
53 #include "core/dom/Node.h" 52 #include "core/dom/Node.h"
54 #include "core/dom/ScriptableDocumentParser.h" 53 #include "core/dom/ScriptableDocumentParser.h"
55 #include "core/events/Event.h" 54 #include "core/events/Event.h"
(...skipping 627 matching lines...) Expand 10 before | Expand all | Expand 10 after
683 v8Results = evaluateHandleScope.Escape(resultArray); 682 v8Results = evaluateHandleScope.Escape(resultArray);
684 } 683 }
685 684
686 if (results && !v8Results.IsEmpty()) { 685 if (results && !v8Results.IsEmpty()) {
687 for (size_t i = 0; i < v8Results->Length(); ++i) 686 for (size_t i = 0; i < v8Results->Length(); ++i)
688 results->append(ScriptValue(v8Results->Get(i), m_isolate)); 687 results->append(ScriptValue(v8Results->Get(i), m_isolate));
689 } 688 }
690 } 689 }
691 690
692 } // namespace WebCore 691 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698