| Index: webkit/plugins/ppapi/common.h
|
| ===================================================================
|
| --- webkit/plugins/ppapi/common.h (revision 0)
|
| +++ webkit/plugins/ppapi/common.h (working copy)
|
| @@ -2,13 +2,14 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef WEBKIT_GLUE_PLUGINS_PEPPER_COMMON_H_
|
| -#define WEBKIT_GLUE_PLUGINS_PEPPER_COMMON_H_
|
| +#ifndef WEBKIT_PLUGINS_PPAPI_COMMON_H_
|
| +#define WEBKIT_PLUGINS_PPAPI_COMMON_H_
|
|
|
| #include "ppapi/c/pp_bool.h"
|
| #include "ppapi/c/pp_var.h"
|
|
|
| -namespace pepper {
|
| +namespace webkit {
|
| +namespace ppapi {
|
|
|
| inline PP_Bool BoolToPPBool(bool value) {
|
| return value ? PP_TRUE : PP_FALSE;
|
| @@ -18,7 +19,8 @@
|
| return (PP_TRUE == value);
|
| }
|
|
|
| -} // namespace pepper
|
| +} // namespace ppapi
|
| +} // namespace webkit
|
|
|
| -#endif // WEBKIT_GLUE_PLUGINS_PEPPER_COMMON_H_
|
| +#endif // WEBKIT_PLUGINS_PPAPI_COMMON_H_
|
|
|
|
|