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

Unified Diff: ppapi/tests/test_char_set.h

Issue 9348069: Move the charset inteface to "trusted" (we can't implement this efficiently (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: STUPID REQUIRED REVIEW COMMENT Created 8 years, 10 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 | « ppapi/shared_impl/private/ppb_char_set_shared.cc ('k') | ppapi/tests/test_char_set.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/tests/test_char_set.h
diff --git a/ppapi/tests/test_char_set.h b/ppapi/tests/test_char_set.h
index f278befcfe9c7ff90653ab47bac4bfdd2c9160b2..ad2c5f1ec38f92d30636e2386f941512b8a58c7f 100644
--- a/ppapi/tests/test_char_set.h
+++ b/ppapi/tests/test_char_set.h
@@ -9,6 +9,7 @@
#include <vector>
#include "ppapi/c/dev/ppb_char_set_dev.h"
+#include "ppapi/c/trusted/ppb_char_set_trusted.h"
#include "ppapi/tests/test_case.h"
class TestCharSet : public TestCase {
@@ -21,7 +22,9 @@ class TestCharSet : public TestCase {
virtual void RunTests(const std::string& filter);
private:
+ std::string TestUTF16ToCharSetDeprecated();
std::string TestUTF16ToCharSet();
+ std::string TestCharSetToUTF16Deprecated();
std::string TestCharSetToUTF16();
std::string TestGetDefaultCharSet();
@@ -30,6 +33,7 @@ class TestCharSet : public TestCase {
std::vector<uint16_t> UTF8ToUTF16(const std::string& utf8);
const PPB_CharSet_Dev* char_set_interface_;
+ const PPB_CharSet_Trusted* char_set_trusted_interface_;
};
#endif // PPAPI_TESTS_TEST_CHAR_SET_H_
« no previous file with comments | « ppapi/shared_impl/private/ppb_char_set_shared.cc ('k') | ppapi/tests/test_char_set.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698