Commit 0b6049cb authored by ftirelo's avatar ftirelo Committed by Commit bot

Use mojo.common.mojom.FilePath to represent file paths

BUG=690020

Review-Url: https://codereview.chromium.org/2842163003
Cr-Commit-Position: refs/heads/master@{#467812}
parent e87cbf96
...@@ -8,4 +8,7 @@ mojom("interfaces") { ...@@ -8,4 +8,7 @@ mojom("interfaces") {
sources = [ sources = [
"chrome_prompt.mojom", "chrome_prompt.mojom",
] ]
deps = [
"//mojo/common:common_custom_types",
]
} }
...@@ -4,6 +4,8 @@ ...@@ -4,6 +4,8 @@
module chrome_cleaner.mojom; module chrome_cleaner.mojom;
import "mojo/common/file_path.mojom";
// The behaviours that have been observed for a given UwS. // The behaviours that have been observed for a given UwS.
struct ObservedBehaviours { struct ObservedBehaviours {
bool ad_injector; bool ad_injector;
...@@ -27,7 +29,7 @@ struct UwS { ...@@ -27,7 +29,7 @@ struct UwS {
// List of fully-qualified paths of the files that will be deleted by the // List of fully-qualified paths of the files that will be deleted by the
// Chrome Cleanup Tool for this unwanted software. // Chrome Cleanup Tool for this unwanted software.
array<string> files_to_delete; array<mojo.common.mojom.FilePath> files_to_delete;
}; };
// Indicates if elevation will be required for cleanup. // Indicates if elevation will be required for cleanup.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment