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

Unified Diff: third_party/WebKit/public/platform/modules/hyphenation/hyphenation.mojom

Issue 2539383002: Replace base::File wrapping with typemapping. (Closed)
Patch Set: Created 4 years 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
Index: third_party/WebKit/public/platform/modules/hyphenation/hyphenation.mojom
diff --git a/third_party/WebKit/public/platform/modules/hyphenation/hyphenation.mojom b/third_party/WebKit/public/platform/modules/hyphenation/hyphenation.mojom
index 65c3d3c830d3b838b03980396ae4c620a394673c..19cf71dc7c22d0413499ce5a0f9b6c93965c8e5d 100644
--- a/third_party/WebKit/public/platform/modules/hyphenation/hyphenation.mojom
+++ b/third_party/WebKit/public/platform/modules/hyphenation/hyphenation.mojom
@@ -4,9 +4,12 @@
module blink.mojom;
+import "mojo/common/common_custom_types.mojom";
+
// Loads hyphenation dictionary.
interface Hyphenation {
// Returns a handle to the raw hyphneation dictionary.
[Sync]
- OpenDictionary(string locale) => (handle? hyphenation_dictionary_handle);
+ OpenDictionary(string locale) => (
+ mojo.common.mojom.File? hyphenation_dictionary_handle);
};

Powered by Google App Engine
This is Rietveld 408576698