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

Unified Diff: chrome/browser/web_applications/web_app_unittest.cc

Issue 9374009: Install platform apps into a separate data directory (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address review comments 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
Index: chrome/browser/web_applications/web_app_unittest.cc
diff --git a/chrome/browser/web_applications/web_app_unittest.cc b/chrome/browser/web_applications/web_app_unittest.cc
index f41ac0d5da7cacd08d335f0e6407f7ddaa9f6ed3..58587519607b2fc8de61d6a651a9d7425cdd4d02 100644
--- a/chrome/browser/web_applications/web_app_unittest.cc
+++ b/chrome/browser/web_applications/web_app_unittest.cc
@@ -44,7 +44,7 @@ TEST_F(WebApplicationTest, GetShortcutInfoForTab) {
EXPECT_EQ(url, info.url);
}
-TEST_F(WebApplicationTest, AppDirWithId) {
+TEST_F(WebApplicationTest, AppDirWithID) {
FilePath profile_path(FILE_PATH_LITERAL("profile"));
FilePath result(web_app::GetWebAppDataDirectory(profile_path, "123", GURL()));
FilePath expected = profile_path.AppendASCII("Web Applications")
@@ -52,7 +52,7 @@ TEST_F(WebApplicationTest, AppDirWithId) {
EXPECT_EQ(expected, result);
}
-TEST_F(WebApplicationTest, AppDirWithUrl) {
+TEST_F(WebApplicationTest, AppDirWithURL) {
FilePath profile_path(FILE_PATH_LITERAL("profile"));
FilePath result(web_app::GetWebAppDataDirectory(
profile_path, "", GURL("http://example.com")));

Powered by Google App Engine
This is Rietveld 408576698