Chromium Code Reviews| Index: components/profile_service/public/interfaces/profile.mojom |
| diff --git a/components/profile_service/public/interfaces/profile.mojom b/components/profile_service/public/interfaces/profile.mojom |
| index 898f4576ce2a3902c6a8d02beb941ad4b9146415..729cf195f4487e9ce04b6445a1725bdb956eee5a 100644 |
| --- a/components/profile_service/public/interfaces/profile.mojom |
| +++ b/components/profile_service/public/interfaces/profile.mojom |
| @@ -5,6 +5,7 @@ |
| module profile; |
| import "components/filesystem/public/interfaces/directory.mojom"; |
| +import "components/filesystem/public/interfaces/types.mojom"; |
| // An encapsulation around the per-profile storage. |
| // |
| @@ -13,5 +14,5 @@ import "components/filesystem/public/interfaces/directory.mojom"; |
| // it has access to is the User's profile. |
|
michaeln
2016/03/05 01:38:54
How is incognito represented?
Elliot Glaysher
2016/03/10 21:00:35
Right now, an incognito window is a different mojo
|
| interface ProfileService { |
| // Returns the user profile directory. |
| - GetDirectory(filesystem.Directory& dir); |
| + GetDirectory(filesystem.Directory& dir) => (filesystem.FileError err); |
| }; |