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

Unified Diff: content/browser/database_browsertest.cc

Issue 11340029: Move remaining files in content\browser to the content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 2 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: content/browser/database_browsertest.cc
===================================================================
--- content/browser/database_browsertest.cc (revision 164795)
+++ content/browser/database_browsertest.cc (working copy)
@@ -27,7 +27,7 @@
const std::string& script,
const std::string& result) {
std::string data;
- ASSERT_TRUE(content::ExecuteJavaScriptAndExtractString(
+ ASSERT_TRUE(ExecuteJavaScriptAndExtractString(
shell->web_contents()->GetRenderViewHost(), L"",
ASCIIToWide(script), &data));
ASSERT_EQ(data, result);
@@ -62,7 +62,7 @@
bool HasTable(Shell* shell) {
std::string data;
- CHECK(content::ExecuteJavaScriptAndExtractString(
+ CHECK(ExecuteJavaScriptAndExtractString(
shell->web_contents()->GetRenderViewHost(), L"",
ASCIIToWide("getRecords()"), &data));
return data != "getRecords error: [object SQLError]";

Powered by Google App Engine
This is Rietveld 408576698