diff options
author | steveblock@chromium.org <steveblock@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-17 15:36:11 +0000 |
---|---|---|
committer | steveblock@chromium.org <steveblock@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-17 15:36:11 +0000 |
commit | 234fde751cb829042d3655d4819c7f0c808e30ca (patch) | |
tree | dc479571f5c8e32228f9c463a9beee249f03ef9e /webkit | |
parent | 005324a2b89526865452f3c5f701584539f7db0a (diff) | |
download | chromium_src-234fde751cb829042d3655d4819c7f0c808e30ca.zip chromium_src-234fde751cb829042d3655d4819c7f0c808e30ca.tar.gz chromium_src-234fde751cb829042d3655d4819c7f0c808e30ca.tar.bz2 |
Fix a comment in cpp_binding_example.h
Review URL: http://codereview.chromium.org/7886005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101656 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/glue/cpp_binding_example.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/glue/cpp_binding_example.h b/webkit/glue/cpp_binding_example.h index a663682..fc61def 100644 --- a/webkit/glue/cpp_binding_example.h +++ b/webkit/glue/cpp_binding_example.h @@ -1,4 +1,4 @@ -// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -12,7 +12,7 @@ constructor, any methods and properties to be exposed, and optionally a destructor. An embedding client can then bind the class to a JavaScript object in a frame's window using the CppBoundClass::BindToJavascript() method, - generally called from the WebView delegate's WindowObjectCleared(). + generally called from the WebFrameClient's DidClearWindowObject(). Once this class has been bound, say to the name "example", it might be called from JavaScript in the following way: |