Index: ppapi/native_client/src/trusted/plugin/pnacl_coordinator.cc |
diff --git a/ppapi/native_client/src/trusted/plugin/pnacl_coordinator.cc b/ppapi/native_client/src/trusted/plugin/pnacl_coordinator.cc |
index 26268bf7eba133190882a621a30b7ba964d0c968..555600f3518ae26c2009b9695b0e601cd97e2f3a 100644 |
--- a/ppapi/native_client/src/trusted/plugin/pnacl_coordinator.cc |
+++ b/ppapi/native_client/src/trusted/plugin/pnacl_coordinator.cc |
@@ -346,7 +346,7 @@ void PnaclCoordinator::TranslateFinished(int32_t pp_error) { |
// that were delayed (see the delay inserted in BitcodeGotCompiled). |
if (ExpectedProgressKnown()) { |
pexe_bytes_compiled_ = expected_pexe_size_; |
- plugin_->EnqueueProgressEvent(plugin::Plugin::kProgressEventProgress, |
+ plugin_->EnqueueProgressEvent(PP_NACL_EVENT_PROGRESS, |
pexe_url_, |
plugin::Plugin::LENGTH_IS_COMPUTABLE, |
pexe_bytes_compiled_, |
@@ -642,14 +642,14 @@ void PnaclCoordinator::BitcodeGotCompiled(int32_t pp_error, |
// that bytes were sent to the compiler. |
if (ExpectedProgressKnown()) { |
if (!ShouldDelayProgressEvent()) { |
- plugin_->EnqueueProgressEvent(plugin::Plugin::kProgressEventProgress, |
+ plugin_->EnqueueProgressEvent(PP_NACL_EVENT_PROGRESS, |
pexe_url_, |
plugin::Plugin::LENGTH_IS_COMPUTABLE, |
pexe_bytes_compiled_, |
expected_pexe_size_); |
} |
} else { |
- plugin_->EnqueueProgressEvent(plugin::Plugin::kProgressEventProgress, |
+ plugin_->EnqueueProgressEvent(PP_NACL_EVENT_PROGRESS, |
pexe_url_, |
plugin::Plugin::LENGTH_IS_NOT_COMPUTABLE, |
pexe_bytes_compiled_, |