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

Unified Diff: chrome/browser/webdata/web_intents_table_unittest.cc

Issue 7624012: First pass on intents options UI. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Add comments, fix CSS, etc. Created 9 years, 4 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/webdata/web_intents_table_unittest.cc
diff --git a/chrome/browser/webdata/web_intents_table_unittest.cc b/chrome/browser/webdata/web_intents_table_unittest.cc
index 6955affee92378d379c4c8a254bc73a548338242..d30d2ba19d975ba997879bde686dcee3c413d8b8 100644
--- a/chrome/browser/webdata/web_intents_table_unittest.cc
+++ b/chrome/browser/webdata/web_intents_table_unittest.cc
@@ -21,6 +21,7 @@ string16 test_action = ASCIIToUTF16("http://webintents.org/intents/share");
string16 test_action_2 = ASCIIToUTF16("http://webintents.org/intents/view");
string16 mime_image = ASCIIToUTF16("image/*");
string16 mime_video = ASCIIToUTF16("video/*");
+string16 test_title = ASCIIToUTF16("Title");
class WebIntentsTableTest : public testing::Test {
protected:
@@ -102,6 +103,7 @@ TEST_F(WebIntentsTableTest, GetAllIntents) {
intent.service_url = test_url;
intent.action = test_action;
intent.type = mime_image;
+ intent.title = test_title;
EXPECT_TRUE(IntentsTable()->SetWebIntent(intent));
intent.action = test_action_2;

Powered by Google App Engine
This is Rietveld 408576698