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

Unified Diff: ppapi/cpp/dev/selection_dev.cc

Issue 7237039: Remove PPBoolToBool and BoolToPPBool and use PP_FromBool and PP_ToBool instead. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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
Index: ppapi/cpp/dev/selection_dev.cc
===================================================================
--- ppapi/cpp/dev/selection_dev.cc (revision 91773)
+++ ppapi/cpp/dev/selection_dev.cc (working copy)
@@ -21,7 +21,7 @@
if (!object)
return Var().Detach();
return static_cast<Selection_Dev*>(object)->
- GetSelectedText(PPBoolToBool(html)).Detach();
+ GetSelectedText(PP_ToBool(html)).Detach();
}
const PPP_Selection_Dev ppp_selection = {

Powered by Google App Engine
This is Rietveld 408576698