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

Unified Diff: chrome/browser/renderer_host/text_input_client_mac_unittest.mm

Issue 7327007: Moving notification types which are chrome specific to a new header file chrome_notification_type... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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/renderer_host/text_input_client_mac_unittest.mm
===================================================================
--- chrome/browser/renderer_host/text_input_client_mac_unittest.mm (revision 91880)
+++ chrome/browser/renderer_host/text_input_client_mac_unittest.mm (working copy)
@@ -105,7 +105,7 @@
EXPECT_EQ(1U, ipc_sink().message_count());
EXPECT_TRUE(ipc_sink().GetUniqueMessageMatching(
- TextInputClientMsg_CharacterIndexForPoint::ID));
+ TextInputClientMsg_CharacterIndexForPocontent::NOTIFICATION_ID));
EXPECT_EQ(kSuccessValue, index);
}
@@ -114,7 +114,7 @@
widget(), gfx::Point(2, 2));
EXPECT_EQ(1U, ipc_sink().message_count());
EXPECT_TRUE(ipc_sink().GetUniqueMessageMatching(
- TextInputClientMsg_CharacterIndexForPoint::ID));
+ TextInputClientMsg_CharacterIndexForPocontent::NOTIFICATION_ID));
EXPECT_EQ(NSNotFound, index);
}
@@ -150,7 +150,7 @@
for (size_t i = 0; i < ipc_sink().message_count(); ++i) {
const IPC::Message* ipc_message = ipc_sink().GetMessageAt(i);
EXPECT_EQ(ipc_message->type(),
- TextInputClientMsg_CharacterIndexForPoint::ID);
+ TextInputClientMsg_CharacterIndexForPocontent::NOTIFICATION_ID);
}
}

Powered by Google App Engine
This is Rietveld 408576698