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

Unified Diff: ppapi/tests/test_url_util.h

Issue 6594107: Add PPB_URLUtil_Dev::GetDocumentURL (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: "add TestGetDocumentURL Created 9 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
Index: ppapi/tests/test_url_util.h
diff --git a/ppapi/tests/test_url_util.h b/ppapi/tests/test_url_util.h
index 2d3b2ffeb9fbe2880b1975487d57d0e08f915424..53e5d6bc7a0287fe514e71b04fb9edc5b9bdd55e 100644
--- a/ppapi/tests/test_url_util.h
+++ b/ppapi/tests/test_url_util.h
@@ -8,9 +8,9 @@
#include "ppapi/cpp/dev/url_util_dev.h"
#include "ppapi/tests/test_case.h"
-class TestUrlUtil : public TestCase {
+class TestURLUtil : public TestCase {
public:
- TestUrlUtil(TestingInstance* instance) : TestCase(instance), util_(NULL) {}
+ TestURLUtil(TestingInstance* instance) : TestCase(instance), util_(NULL) {}
// TestCase implementation.
virtual bool Init();
@@ -22,8 +22,9 @@ class TestUrlUtil : public TestCase {
std::string TestIsSameSecurityOrigin();
std::string TestDocumentCanRequest();
std::string TestDocumentCanAccessDocument();
+ std::string TestGetDocumentURL();
- const pp::UrlUtil_Dev* util_;
+ const pp::URLUtil_Dev* util_;
};
#endif // PPAPI_TESTS_TEST_URL_UTIL_H_

Powered by Google App Engine
This is Rietveld 408576698