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

Unified Diff: ui/base/ime/input_method_ibus_unittest.cc

Issue 10830101: Cleanup: Fix a few compiler warnings by changing EXPECT_EQ(false, ...) to EXPECT_FALSE(...). (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 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
« no previous file with comments | « no previous file | ui/views/view_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/ime/input_method_ibus_unittest.cc
===================================================================
--- ui/base/ime/input_method_ibus_unittest.cc (revision 149435)
+++ ui/base/ime/input_method_ibus_unittest.cc (working copy)
@@ -35,7 +35,7 @@
class TestableInputMethodIBus : public InputMethodIBus {
public:
- TestableInputMethodIBus(internal::InputMethodDelegate* delegate)
+ explicit TestableInputMethodIBus(internal::InputMethodDelegate* delegate)
: InputMethodIBus(delegate) {
}
@@ -45,7 +45,7 @@
class CreateInputContextSuccessHandler {
public:
- CreateInputContextSuccessHandler(const dbus::ObjectPath& object_path)
+ explicit CreateInputContextSuccessHandler(const dbus::ObjectPath& object_path)
: object_path_(object_path) {
}
@@ -89,7 +89,7 @@
error_callback_ = error_callback;
}
- chromeos::IBusClient::ErrorCallback error_callback_;
+ chromeos::IBusClient::ErrorCallback error_callback_;
};
class InputMethodIBusTest : public internal::InputMethodDelegate,
« no previous file with comments | « no previous file | ui/views/view_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698