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

Unified Diff: mojo/edk/system/core_test_base.cc

Issue 1160203002: Make Dispatcher::Type an enum class. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 7 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: mojo/edk/system/core_test_base.cc
diff --git a/mojo/edk/system/core_test_base.cc b/mojo/edk/system/core_test_base.cc
index 7196886d0ab7b284d785492c9beaa7d350be999c..0e5836321616ff0806d6e148b67485b2ca092163 100644
--- a/mojo/edk/system/core_test_base.cc
+++ b/mojo/edk/system/core_test_base.cc
@@ -30,7 +30,7 @@ class MockDispatcher : public Dispatcher {
}
// |Dispatcher| private methods:
- Type GetType() const override { return kTypeUnknown; }
+ Type GetType() const override { return Type::UNKNOWN; }
private:
~MockDispatcher() override { info_->IncrementDtorCallCount(); }

Powered by Google App Engine
This is Rietveld 408576698