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

Side by Side Diff: sky/engine/bindings-dart/core/dart/shared_lib/DartNativeExtensions.cpp

Issue 875013003: Import Dart bindings as of Blink r188698. This merely copies the files over and does not attach any… (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2014 Google Inc. All rights reserved. 2 * Copyright (C) 2014 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 10 matching lines...) Expand all
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #include "sky/engine/config.h" 31 #include "config.h"
32 32
33 #include "sky/engine/platform/TestingPlatformSupport.h" 33 #include "bindings/core/dart/shared_lib/DartNativeExtensions.h"
34
35 #include "bindings/core/dart/DartUtilities.h"
34 36
35 namespace blink { 37 namespace blink {
36 38
37 TestingDiscardableMemory::TestingDiscardableMemory(size_t size) : m_data(size), m_isLocked(true) 39 #if defined(ENABLE_DART_NATIVE_EXTENSIONS)
40 Dart_Handle DartNativeExtensions::loadExtension(const String& url, Dart_Handle p arentLibrary)
38 { 41 {
42 String userUri = url.substring(String("dart-ext:").length());
43
44 String name;
45 String path;
46 size_t index = userUri.reverseFind('/');
47 if (index == kNotFound) {
48 name = userUri;
49 path = "./";
50 } else if (index == userUri.length() - 1) {
51 return Dart_NewApiError("Extension name missing.");
52 } else {
53 name = userUri.substring(index + 1);
54 path = userUri.substring(0, index + 1);
55 }
56
57 void* libraryHandle = 0;
58 Dart_Handle result = loadExtensionLibrary(path, name, &libraryHandle);
59 if (Dart_IsError(result)) {
60 return result;
61 }
62
63 String initFunctionName = name + "_Init";
64
65 typedef Dart_Handle (*InitFunctionType)(Dart_Handle library);
66 InitFunctionType fn;
67 result = resolveSymbol(libraryHandle, initFunctionName, reinterpret_cast<voi d**>(&fn));
68 if (Dart_IsError(result)) {
69 return result;
70 }
71
72 return (*fn)(parentLibrary);
73 }
74 #else
75 Dart_Handle DartNativeExtensions::loadExtension(const String& url, Dart_Handle p arentLibrary)
76 {
77 return Dart_NewApiError("Native extensions are not enabled.");
78 }
79 #endif // defined(ENABLE_DART_NATIVE_EXTENSIONS)
80
39 } 81 }
40 82
41 TestingDiscardableMemory::~TestingDiscardableMemory()
42 {
43 }
44 83
45 bool TestingDiscardableMemory::lock()
46 {
47 ASSERT(!m_isLocked);
48 m_isLocked = true;
49 return false;
50 }
51
52 void* TestingDiscardableMemory::data()
53 {
54 ASSERT(m_isLocked);
55 return m_data.data();
56 }
57
58 void TestingDiscardableMemory::unlock()
59 {
60 ASSERT(m_isLocked);
61 m_isLocked = false;
62 // Force eviction to catch clients not correctly checking the return value o f lock().
63 memset(m_data.data(), 0, m_data.size());
64 }
65
66 TestingPlatformSupport::TestingPlatformSupport(const Config& config)
67 : m_config(config)
68 , m_oldPlatform(blink::Platform::current())
69 {
70 blink::Platform::initialize(this);
71 }
72
73 TestingPlatformSupport::~TestingPlatformSupport()
74 {
75 blink::Platform::initialize(m_oldPlatform);
76 }
77
78 blink::WebDiscardableMemory* TestingPlatformSupport::allocateAndLockDiscardableM emory(size_t bytes)
79 {
80 return !m_config.hasDiscardableMemorySupport ? 0 : new TestingDiscardableMem ory(bytes);
81 }
82
83 const unsigned char* TestingPlatformSupport::getTraceCategoryEnabledFlag(const c har* categoryName)
84 {
85 static const unsigned char tracingIsDisabled = 0;
86 return &tracingIsDisabled;
87 }
88
89 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698