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

Unified Diff: chrome/common/extensions/api/hangouts_private.idl

Issue 1951783003: Remove HangoutsPrivate API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove entry in known_broken_links.json Created 4 years, 7 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
« no previous file with comments | « chrome/common/extensions/api/_api_features.json ('k') | chrome/common/extensions/api/schemas.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/api/hangouts_private.idl
diff --git a/chrome/common/extensions/api/hangouts_private.idl b/chrome/common/extensions/api/hangouts_private.idl
deleted file mode 100644
index 513b34f8afca7847ea9141ea374a3f25afcf3771..0000000000000000000000000000000000000000
--- a/chrome/common/extensions/api/hangouts_private.idl
+++ /dev/null
@@ -1,37 +0,0 @@
-// Copyright 2013 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.
-
-// The <code>chrome.hangoutsPrivate</code> API is used by Google Hangouts to
-// wait on a request from Chrome to start a hangout.
-// TODO(rkc): This API is temporary. We are working on plans which include
-// replacing this with a scheme based solution which might be implemented
-// using registerProtocolHandler, but we are still finishing that design.
-// See crbug.com/306672
-namespace hangoutsPrivate {
-
- enum HangoutType {chat, video, audio};
-
- dictionary User {
- // GAIA obfuscated id of the user.
- DOMString id;
- };
-
- dictionary HangoutRequest {
- // Email of the user sending this request. This has to match the logged in
- // user otherwise the hangout will not be opened.
- DOMString from;
-
- // A list of users with whom to start this hangout with.
- User[] to;
-
- // Type of hangout request.
- HangoutType type;
- };
-
- interface Events {
- // Fired when Chrome wants to request a new hangout be opened up with a
- // user (or set of users).
- static void onHangoutRequested(HangoutRequest request);
- };
-};
« no previous file with comments | « chrome/common/extensions/api/_api_features.json ('k') | chrome/common/extensions/api/schemas.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698