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

Side by Side Diff: chrome/browser/extensions/api/rtc_private/rtc_private_api.h

Issue 10919086: Wired chrome.rtcPrivate API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 #ifndef CHROME_BROWSER_EXTENSIONS_API_RTC_PRIVATE_RTC_PRIVATE_H_
5 #define CHROME_BROWSER_EXTENSIONS_API_RTC_PRIVATE_RTC_PRIVATE_H_
6
7 class Profile;
8
9 namespace contacts {
10 class Contact;
11 }
12
13 namespace extensions {
14
15 class RtcPrivateApi {
Daniel Erat 2012/09/05 19:28:32 nit: add a comment describing what this is for, e.
zel 2012/09/05 19:56:03 Done.
16 public:
17 // Contact launch intent action.
18 enum LaunchAction {
19 LAUNCH_ACTIVATE,
20 LAUNCH_CHAT,
21 LAUNCH_VIDEO,
22 LAUNCH_VOICE,
23 };
24
25 static void RaiseLaunchEvent(Profile* profile,
26 LaunchAction action,
27 contacts::Contact* contact);
28 };
29
30 } // namespace chromeos
Daniel Erat 2012/09/05 19:28:32 nit: fix comment
zel 2012/09/05 19:56:03 Done.
31
32 #endif // CHROME_BROWSER_EXTENSIONS_API_RTC_PRIVATE_RTC_PRIVATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698