| Index: webkit/glue/cpp_variant.cc
|
| diff --git a/webkit/glue/cpp_variant.cc b/webkit/glue/cpp_variant.cc
|
| index 699f7f158dfeae769a54bff4419ecacba24a6c58..48897745b4564226a62fe75204ab2d9a94a200ce 100644
|
| --- a/webkit/glue/cpp_variant.cc
|
| +++ b/webkit/glue/cpp_variant.cc
|
| @@ -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.
|
|
|
| @@ -14,6 +14,8 @@
|
|
|
| using WebKit::WebBindings;
|
|
|
| +namespace webkit_glue {
|
| +
|
| CppVariant::CppVariant() {
|
| type = NPVariantType_Null;
|
| }
|
| @@ -261,3 +263,5 @@ bool CppVariant::Invoke(const std::string& method, const CppVariant* args,
|
| return false;
|
| }
|
| }
|
| +
|
| +} // namespace webkit_glue
|
|
|