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

Unified Diff: webkit/support/webkit_support.cc

Issue 12038003: REGRESSION(r175642) Caused webkit unit tests failures (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/support/webkit_support.cc
diff --git a/webkit/support/webkit_support.cc b/webkit/support/webkit_support.cc
index 6e8592541768f1e18d4b24fd61a8c62004ca3eda..2dd97e4a2c4775e92069452606ffd0a52fd85357 100644
--- a/webkit/support/webkit_support.cc
+++ b/webkit/support/webkit_support.cc
@@ -468,6 +468,7 @@ WebKit::WebStorageNamespace* CreateSessionStorageNamespace(unsigned quota) {
WebKit::WebString GetWebKitRootDir() {
FilePath path = GetWebKitRootDirFilePath();
+ CHECK(file_util::AbsolutePath(&path));
Nico 2013/01/21 03:23:00 Shouldn't this be done in GetWebKitRootDirFilePath
std::string path_ascii = path.MaybeAsASCII();
CHECK(!path_ascii.empty());
return WebKit::WebString::fromUTF8(path_ascii.c_str());
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698