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

Side by Side Diff: mojo/services/public/interfaces/navigation/navigation.mojom

Issue 537843002: Expose NavigatorHost via Embed() rather than globally. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@viewman3
Patch Set: darments Created 6 years, 3 months 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 unified diff | Download patch
« no previous file with comments | « mojo/services/html_viewer/html_viewer.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 import "mojo/services/public/interfaces/network/url_loader.mojom" 5 import "mojo/services/public/interfaces/network/url_loader.mojom"
6 6
7 module mojo { 7 module mojo {
8 8
9 // Expresses a preference for where a navigation will be performed. 9 // Expresses a preference for where a navigation will be performed.
10 enum Target { 10 enum Target {
(...skipping 19 matching lines...) Expand all
30 30
31 URLResponse? response; 31 URLResponse? response;
32 32
33 // The URLLoader instance that generated the response. This must be kept 33 // The URLLoader instance that generated the response. This must be kept
34 // alive until the response body has been completely consumed. 34 // alive until the response body has been completely consumed.
35 URLLoader? loader; 35 URLLoader? loader;
36 }; 36 };
37 37
38 // Embedders that support navigation of implement this interface. 38 // Embedders that support navigation of implement this interface.
39 interface NavigatorHost { 39 interface NavigatorHost {
40 RequestNavigate(uint32 source_node_id, Target target, 40 RequestNavigate(Target target, NavigationDetails? details);
41 NavigationDetails? details);
42 41
43 // Applications call this to inform hosts of navigations they performed 42 // Applications call this to inform hosts of navigations they performed
44 // locally. For example, pushState() navigations in an HTML application. 43 // locally. For example, pushState() navigations in an HTML application.
45 DidNavigateLocally(uint32 source_node_id, string? url); 44 DidNavigateLocally(string? url);
46 };
47
48 // Applications implement this interface to support navigation of their views
49 // by embedders.
50 // |response_details| can be NULL when a navigation was not the result of a
51 // network load.
52 interface Navigator {
53 Navigate(uint32 node_id,
54 NavigationDetails? navigation_details,
55 ResponseDetails? response_details);
56 }; 45 };
57 46
58 } 47 }
OLDNEW
« no previous file with comments | « mojo/services/html_viewer/html_viewer.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698