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

Unified Diff: content/browser/background_sync/background_sync_browsertest.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: Created 4 years, 12 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/background_sync/background_sync_browsertest.cc
diff --git a/content/browser/background_sync/background_sync_browsertest.cc b/content/browser/background_sync/background_sync_browsertest.cc
index a5de6ada408947b7fbb793c069f3dbf895d4ac0f..8298518e24b157f177b0799af83598d11d195a8f 100644
--- a/content/browser/background_sync/background_sync_browsertest.cc
+++ b/content/browser/background_sync/background_sync_browsertest.cc
@@ -72,7 +72,7 @@ void OneShotPendingDidGetSyncRegistration(
scoped_ptr<BackgroundSyncRegistrationHandle> registration_handle) {
ASSERT_EQ(BACKGROUND_SYNC_STATUS_OK, error_type);
callback.Run(registration_handle->sync_state() ==
- BACKGROUND_SYNC_STATE_PENDING);
+ BackgroundSyncState::PENDING);
}
void OneShotPendingDidGetSWRegistration(

Powered by Google App Engine
This is Rietveld 408576698