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

Unified Diff: mojo/services/public/interfaces/launcher/launcher.mojom

Issue 549273002: Various mojom cleanup from ContentHandler changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn 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 side-by-side diff with in-line comments
Download patch
Index: mojo/services/public/interfaces/launcher/launcher.mojom
diff --git a/mojo/services/public/interfaces/launcher/launcher.mojom b/mojo/services/public/interfaces/launcher/launcher.mojom
deleted file mode 100644
index 46f0dccce5f8937ac99f79b8e5592fcc015c9532..0000000000000000000000000000000000000000
--- a/mojo/services/public/interfaces/launcher/launcher.mojom
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-import "mojo/services/public/interfaces/navigation/navigation.mojom"
-
-module mojo {
-
-interface Launcher {
- // Determines the correct handler application that can render a given URL.
- //
- // Sometimes this is known statically from the URL (e.g., from its scheme, or
- // because we already have an application locally that has said it can handle
- // the URL. Other times, we will actually fetch |url| to examine its
- // content-type and/or sniff it to determine the correct handler.
- //
- // When the caller receives the result, it should connect to the application
- // at |handler_url| and navigate it to |view_url|.
- //
- // Note: |view_url| might not be the same as |url|, e.g., in the case of
- // redirects. Applications should navigate to view_url, not |url| or
- // response->url.
- //
- // Note: |response| can be NULL in the case where a request was not needed to
- // determine the correct handler.
- Launch(NavigationDetails? details) =>
- (string? handler_url, string? view_url, ResponseDetails? response);
-};
-
-}
« no previous file with comments | « mojo/services/public/interfaces/launcher/BUILD.gn ('k') | mojo/services/public/interfaces/navigation/navigation.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698