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

Unified Diff: src/site/articles/native-extensions-for-standalone-dart-vm/index.markdown

Issue 10700168: massive CL is massive (Closed) Base URL: https://code.google.com/p/dartlang-site/@master
Patch Set: Created 8 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/site/articles/m1-language-changes/index.markdown ('k') | src/site/articles/why-not-bytecode/index.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/site/articles/native-extensions-for-standalone-dart-vm/index.markdown
diff --git a/src/site/articles/native-extensions-for-standalone-dart-vm/index.markdown b/src/site/articles/native-extensions-for-standalone-dart-vm/index.markdown
index c40ddfd908a7523f225243dede975e0177e7b5c3..c4f73b5807bfd4109cc7fc74cd9e38fb4b15baec 100644
--- a/src/site/articles/native-extensions-for-standalone-dart-vm/index.markdown
+++ b/src/site/articles/native-extensions-for-standalone-dart-vm/index.markdown
@@ -66,9 +66,11 @@ Here is the sequence of events at load time, when a Dart app that imports sample
2. The VM loads the shared library "sample_extension" from the directory containing the Dart library.
3. The function sample_extension_Init() in the shared library is called. It registers the shared library function ResolveName() as the name resolver for all native functions in the library sample_extension.dart. We'll see what the name resolver does when we look at synchronous native functions, below.
-<aside class="note" markdown="1">
-**Note:**
+<aside>
+ <div class="alert alert-info">
+ <strong>Note:</strong>
The filename of the shared library depends on the platform. On Windows, the VM loads sample_extension.dll, on Linux it loads libsample_extension.so, and on Mac it loads libsample_extension.dylib. We show how to build and link these shared libraries in an appendix at the end of the article.
+ </div>
</aside>
###Using the Dart Embedding API from native code
« no previous file with comments | « src/site/articles/m1-language-changes/index.markdown ('k') | src/site/articles/why-not-bytecode/index.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698