Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1810)

Unified Diff: content/renderer/pepper/common.h

Issue 384793003: PPAPI: Remove content/renderer/pepper/common.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/pepper/audio_helper.cc ('k') | content/renderer/pepper/event_conversion.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/pepper/common.h
diff --git a/content/renderer/pepper/common.h b/content/renderer/pepper/common.h
deleted file mode 100644
index 02df9ef6ac84f98392bb101dca7c944bbe1de7dd..0000000000000000000000000000000000000000
--- a/content/renderer/pepper/common.h
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright (c) 2010 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 CONTENT_RENDERER_PEPPER_COMMON_H_
-#define CONTENT_RENDERER_PEPPER_COMMON_H_
-
-#include "ppapi/c/pp_bool.h"
-#include "ppapi/c/pp_var.h"
-
-namespace content {
-
-inline PP_Bool BoolToPPBool(bool value) { return value ? PP_TRUE : PP_FALSE; }
-
-inline bool PPBoolToBool(PP_Bool value) { return (PP_TRUE == value); }
-
-} // namespace content
-
-#endif // CONTENT_RENDERER_PEPPER_COMMON_H_
« no previous file with comments | « content/renderer/pepper/audio_helper.cc ('k') | content/renderer/pepper/event_conversion.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698