summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-02 23:40:33 +0000
committerjochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-02 23:40:33 +0000
commit61d83bb035be4f52bd7439f191666b07ff39e1c3 (patch)
tree186f05153377ae164cdb54ec35829a9c4e786cc2
parentc0f23dff659d8c7222b2b5acb303743616310362 (diff)
downloadchromium_src-61d83bb035be4f52bd7439f191666b07ff39e1c3.zip
chromium_src-61d83bb035be4f52bd7439f191666b07ff39e1c3.tar.gz
chromium_src-61d83bb035be4f52bd7439f191666b07ff39e1c3.tar.bz2
Update file-level comment for gin::IsolateHolder
BUG=368728 R=abarth@chromium.org Review URL: https://codereview.chromium.org/261823009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@267972 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--gin/public/isolate_holder.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gin/public/isolate_holder.h b/gin/public/isolate_holder.h
index f82a53a..ee696f6 100644
--- a/gin/public/isolate_holder.h
+++ b/gin/public/isolate_holder.h
@@ -16,12 +16,12 @@ class PerIsolateData;
// To embed Gin, first create an instance of IsolateHolder to hold the
// v8::Isolate in which you will execute JavaScript. You might wish to subclass
-// IsolateHolder if you want to tie more state to the lifetime of the
+// IsolateHolder if you want to tie more state to the lifetime of the isolate.
//
// You can use gin in two modes: either gin manages V8, or the gin-embedder
-// manages gin. If gin manages V8, use the IsolateHolder constructor without
-// parameters, otherwise, the gin-embedder needs to create v8::Isolates and
-// pass them to IsolateHolder.
+// manages gin. If gin manages V8, use the IsolateHolder constructor that does
+// not take an v8::Isolate parameter, otherwise, the gin-embedder needs to
+// create v8::Isolates and pass them to IsolateHolder.
//
// It is not possible to mix the two.
class GIN_EXPORT IsolateHolder {