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

Unified Diff: ppapi/tests/test_post_message.cc

Issue 2297043002: Web expose FileSystemFileEntry, FileSystemDirectoryEntry and friends (Closed)
Patch Set: Rebased Created 4 years, 1 month 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 | « extensions/common/api/runtime.json ('k') | storage/common/fileapi/file_system_info.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/tests/test_post_message.cc
diff --git a/ppapi/tests/test_post_message.cc b/ppapi/tests/test_post_message.cc
index 1004490465cbbf426841dc821cee009010a60488..6d3e824d66a4cf3d007fcd869df3ce6d623acd66 100644
--- a/ppapi/tests/test_post_message.cc
+++ b/ppapi/tests/test_post_message.cc
@@ -608,9 +608,10 @@ std::string TestPostMessage::TestSendingResource() {
pp::Var file_system_var(file_system);
std::vector<std::string> properties_to_check;
properties_to_check.push_back(
- "message_event.data.constructor.name === 'DOMFileSystem'");
+ "message_event.data.constructor.name === 'FileSystem'");
properties_to_check.push_back(
- "message_event.data.root.constructor.name === 'DirectoryEntry'");
+ "message_event.data.root.constructor.name === "
+ "'FileSystemDirectoryEntry'");
properties_to_check.push_back(
"message_event.data.name.indexOf("
" ':Temporary',"
« no previous file with comments | « extensions/common/api/runtime.json ('k') | storage/common/fileapi/file_system_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698