Index: ppapi/proxy/pp_utils.h |
diff --git a/ppapi/proxy/pp_utils.h b/ppapi/proxy/pp_utils.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..be4cd06e1a7bc1d972ea31db7022596d9b1c98af |
--- /dev/null |
+++ b/ppapi/proxy/pp_utils.h |
@@ -0,0 +1,20 @@ |
+// Copyright 2013 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. |
+ |
+#ifndef PPAPI_PROXY_PP_UTILS_H_ |
+#define PPAPI_PROXY_PP_UTILS_H_ |
+ |
+#include "base/basictypes.h" |
+ |
+namespace ppapi { |
+namespace proxy { |
+namespace pp_utils { |
yzshen1
2013/08/16 20:40:42
No need to add another layer of namespace.
ygorshenin1
2013/08/19 14:33:35
Done.
|
+ |
+int32_t ConvertPPError(int32_t pp_error, bool private_api); |
yzshen1
2013/08/16 20:40:42
Both the file name and the method name are too bro
ygorshenin1
2013/08/19 14:33:35
Done.
|
+ |
+} // namespace pp_utils |
+} // namespace proxy |
+} // namespace ppapi |
+ |
+#endif // PPAPI_PROXY_PP_UTILS_H_ |