| Index: webkit/plugins/ppapi/ppapi_plugin_instance.cc
|
| diff --git a/webkit/plugins/ppapi/ppapi_plugin_instance.cc b/webkit/plugins/ppapi/ppapi_plugin_instance.cc
|
| index 7f849f6537805b61a80ffa96b34dfa7b954e7349..905706a29cf1b1f3fba497cddf23781d529576b2 100644
|
| --- a/webkit/plugins/ppapi/ppapi_plugin_instance.cc
|
| +++ b/webkit/plugins/ppapi/ppapi_plugin_instance.cc
|
| @@ -160,10 +160,10 @@ const ui::TextInputType kPluginDefaultTextInputType = ui::TEXT_INPUT_TYPE_TEXT;
|
| mismatching_enums)
|
|
|
| // <embed>/<object> attributes.
|
| -static const char kWidth[] = "width";
|
| -static const char kHeight[] = "height";
|
| -static const char kBorder[] = "border"; // According to w3c, deprecated.
|
| -static const char kStyle[] = "style";
|
| +const char kWidth[] = "width";
|
| +const char kHeight[] = "height";
|
| +const char kBorder[] = "border"; // According to w3c, deprecated.
|
| +const char kStyle[] = "style";
|
|
|
| COMPILE_ASSERT_MATCHING_ENUM(TypePointer, PP_CURSORTYPE_POINTER);
|
| COMPILE_ASSERT_MATCHING_ENUM(TypeCross, PP_CURSORTYPE_CROSS);
|
|
|