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

Unified Diff: components/arc/obb_mounter/arc_obb_mounter_bridge.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/metrics/arc_metrics_service.cc ('k') | components/arc/obb_mounter/arc_obb_mounter_bridge.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/arc/obb_mounter/arc_obb_mounter_bridge.h
diff --git a/components/arc/obb_mounter/arc_obb_mounter_bridge.h b/components/arc/obb_mounter/arc_obb_mounter_bridge.h
index 30d162ae458a9e71a8d45e08ac9bd58b9367838d..46f44be599533d4a90be6de84e127432704504eb 100644
--- a/components/arc/obb_mounter/arc_obb_mounter_bridge.h
+++ b/components/arc/obb_mounter/arc_obb_mounter_bridge.h
@@ -5,6 +5,8 @@
#ifndef COMPONENTS_ARC_OBB_MOUNTER_ARC_OBB_MOUNTER_BRIDGE_H_
#define COMPONENTS_ARC_OBB_MOUNTER_ARC_OBB_MOUNTER_BRIDGE_H_
+#include <string>
+
#include "base/macros.h"
#include "components/arc/arc_service.h"
#include "components/arc/common/obb_mounter.mojom.h"
@@ -28,11 +30,11 @@ class ArcObbMounterBridge
void OnInstanceReady() override;
// mojom::ObbMounterHost overrides:
- void MountObb(const mojo::String& obb_file,
- const mojo::String& target_path,
+ void MountObb(const std::string& obb_file,
+ const std::string& target_path,
int32_t owner_gid,
const MountObbCallback& callback) override;
- void UnmountObb(const mojo::String& target_path,
+ void UnmountObb(const std::string& target_path,
const UnmountObbCallback& callback) override;
private:
« no previous file with comments | « components/arc/metrics/arc_metrics_service.cc ('k') | components/arc/obb_mounter/arc_obb_mounter_bridge.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698