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

Unified Diff: native_client_sdk/src/doc/_developer.chrome.com_generated/glossary.html

Issue 140993006: [NaCl SDK Docs] Check in the generated NaCl SDK Documentation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: try without pepper_{dev,beta,stable} 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 side-by-side diff with in-line comments
Download patch
Index: native_client_sdk/src/doc/_developer.chrome.com_generated/glossary.html
diff --git a/native_client_sdk/src/doc/_developer.chrome.com_generated/glossary.html b/native_client_sdk/src/doc/_developer.chrome.com_generated/glossary.html
new file mode 100644
index 0000000000000000000000000000000000000000..082a3a0780ccf326566756043c9da1c4a1609abb
--- /dev/null
+++ b/native_client_sdk/src/doc/_developer.chrome.com_generated/glossary.html
@@ -0,0 +1,56 @@
+{{+bindTo:partials.standard_nacl_article}}
+
+<section id="glossary">
+<span id="id1"></span><h1 id="glossary"><span id="id1"></span>Glossary</h1>
+<p>This glossary defines terms and names commonly used throughout the Native Client
+documentation.</p>
+<dl class="docutils">
+<dt>asynchronous programming</dt>
+<dd>In the asynchronous programming model, function calls are executed and return
+immediately without waiting for a response. Using this model, function calls
+are non-blocking; the web browser continues its main thread of execution
+and gets notified of asynchronous call completion through callbacks or some
+other mechanism.</dd>
+<dt>focus events</dt>
+<dd>Events that indicate whether certain parts of a web page are
+in or out of focus.</dd>
+<dt>input events</dt>
+<dd>Events that occur when an input device (such as keyboard or mouse)
+is used to interact with an module instance.</dd>
+<dt>instance</dt>
+<dd>A rectangle on a web page that is managed by a Native Client module (the
+rectangle can have <code>width=0</code> and <code>height=0</code>, which means that nothing is
+drawn on the page).</dd>
+<dt>manifest file</dt>
+<dd>A file containing metadata or information about accompanying files.</dd>
+<dt>message events</dt>
+<dd>Events used to pass data between JavaScript and the Native Client
+module (see the <a class="reference internal" href="/native-client/devguide/coding/message-system.html"><em>Messaging System</em></a> chapter).</dd>
+<dt>module</dt>
+<dd>Depending on context, &#8220;module&#8221; may mean one of two things. First, it may be a
+general short-term for for &#8220;Native Client module&#8221;&#8212;compiled C/C++ code
+produced with a Native Client toolchain (for example PNaCl). See
+<a class="reference internal" href="/native-client/overview.html#link-how-nacl-works"><em>How Native Client works</em></a> for more details.
+Second, it may refer to a concrete implementation of the <a class="reference external" href="https://developers.google.com/native-client/peppercpp/classpp_1_1_module">pp::Module class</a>
+for some Native Client module.</dd>
+<dt>progress events</dt>
+<dd>Events generated by the Native Client runtime system during the
+module loading process.</dd>
+<dt>Var</dt>
+<dd>An object in a Native Client module that corresponds to a JavaScript
+variable.</dd>
+<dt>view change events</dt>
+<dd>Events that occur when a change in the browser affects the
+module instance (such as resizing the browser window or going to
+and from fullscreen mode).</dd>
+<dt>web workers</dt>
+<dd><a class="reference external" href="http://en.wikipedia.org/wiki/Web_Workers">Web workers</a> provide a
+mechanism for running heavy-weight JavaScript code on background threads
+so that the main web page can continue to respond to user interaction.
+Web pages interact with web workers by using <code>postMessage()</code> to send
+messages. The way a web page interacts with a Native Client module
+is analogous to the way it interacts with web workers.</dd>
+</dl>
+</section>
+
+{{/partials.standard_nacl_article}}

Powered by Google App Engine
This is Rietveld 408576698