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

Unified Diff: components/arc/metrics/arc_metrics_service.h

Issue 2495913002: arc: Convert more Mojo types to STL (Closed)
Patch Set: Rebased to ToT Created 4 years, 1 month 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 | « components/arc/ime/arc_ime_bridge_impl.cc ('k') | components/arc/metrics/arc_metrics_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/arc/metrics/arc_metrics_service.h
diff --git a/components/arc/metrics/arc_metrics_service.h b/components/arc/metrics/arc_metrics_service.h
index c240fda6151faeb48cf977fed5da38d9df5ffd9b..c3d256b4e1ee196952b969088ac6f12c81451e3e 100644
--- a/components/arc/metrics/arc_metrics_service.h
+++ b/components/arc/metrics/arc_metrics_service.h
@@ -5,6 +5,8 @@
#ifndef COMPONENTS_ARC_METRICS_ARC_METRICS_SERVICE_H_
#define COMPONENTS_ARC_METRICS_ARC_METRICS_SERVICE_H_
+#include <vector>
+
#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "base/threading/thread_checker.h"
@@ -39,12 +41,12 @@ class ArcMetricsService
// MetricsHost overrides.
void ReportBootProgress(
- mojo::Array<mojom::BootProgressEventPtr> events) override;
+ std::vector<mojom::BootProgressEventPtr> events) override;
private:
bool CalledOnValidThread();
void RequestProcessList();
- void ParseProcessList(mojo::Array<mojom::RunningAppProcessInfoPtr> processes);
+ void ParseProcessList(std::vector<mojom::RunningAppProcessInfoPtr> processes);
// DBus callbacks.
void OnArcStartTimeRetrieved(bool success, base::TimeTicks arc_start_time);
« no previous file with comments | « components/arc/ime/arc_ime_bridge_impl.cc ('k') | components/arc/metrics/arc_metrics_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698