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

Unified Diff: content/browser/presentation/presentation_type_converters_unittest.cc

Issue 1527183003: Change mojo enums to be scoped enums in the generated C++ bindings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mojo-binding-equals
Patch Set: rebase Created 4 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
Index: content/browser/presentation/presentation_type_converters_unittest.cc
diff --git a/content/browser/presentation/presentation_type_converters_unittest.cc b/content/browser/presentation/presentation_type_converters_unittest.cc
index 3107aff3d03fc32c376acbcfa8edabd7d937092b..61c91f948bfc6dffd0b4c342d78d18d1e7cad361 100644
--- a/content/browser/presentation/presentation_type_converters_unittest.cc
+++ b/content/browser/presentation/presentation_type_converters_unittest.cc
@@ -26,7 +26,7 @@ TEST(PresentationTypeConvertersTest, PresentationError) {
presentation::PresentationErrorPtr error_mojo(
presentation::PresentationError::From(error));
EXPECT_FALSE(error_mojo.is_null());
- EXPECT_EQ(presentation::PRESENTATION_ERROR_TYPE_NO_AVAILABLE_SCREENS,
+ EXPECT_EQ(presentation::PresentationErrorType::NO_AVAILABLE_SCREENS,
error_mojo->error_type);
EXPECT_EQ(message, error_mojo->message);
}

Powered by Google App Engine
This is Rietveld 408576698