Chromium Code Reviews| Index: webkit/glue/cpp_bound_class.h |
| diff --git a/webkit/glue/cpp_bound_class.h b/webkit/glue/cpp_bound_class.h |
| index 61ccc31c6bde7e039bf2703262d7d38158024124..3069fb2ff6960310fc5b687b91edccc819797865 100644 |
| --- a/webkit/glue/cpp_bound_class.h |
| +++ b/webkit/glue/cpp_bound_class.h |
| @@ -1,4 +1,4 @@ |
| -// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| +// Copyright (c) 2012 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. |
| @@ -31,6 +31,8 @@ namespace WebKit { |
| class WebFrame; |
| } |
| +namespace webkit_glue { |
| + |
| typedef std::vector<CppVariant> CppArgumentList; |
| // CppBoundClass lets you map Javascript method calls and property accesses |
| @@ -140,4 +142,11 @@ class WEBKIT_GLUE_EXPORT CppBoundClass { |
| DISALLOW_COPY_AND_ASSIGN(CppBoundClass); |
| }; |
| +} // namespace webkit_glue |
| + |
| +// TODO(wangxianzhu): This is temporary to resolve crbug.com/127238 with minimal |
| +// code change. Eventually we will replace CppBoundClass/CppVariant with V8 API. |
| +using webkit_glue::CppArgumentList; |
| +using webkit_glue::CppBoundClass; |
|
tony
2012/05/08 17:27:39
Please just fix all the callers. There aren't tha
Xianzhu
2012/05/08 19:38:03
Done.
|
| + |
| #endif // CPP_BOUNDCLASS_H__ |