| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 const char STR_X[] = "x"; | 69 const char STR_X[] = "x"; |
| 70 const char STR_GOOGLE_COM[] = "google.com"; | 70 const char STR_GOOGLE_COM[] = "google.com"; |
| 71 const char STR_GMAIL_COM[] = "gmail.com"; | 71 const char STR_GMAIL_COM[] = "gmail.com"; |
| 72 const char STR_GOOGLEMAIL_COM[] = "googlemail.com"; | 72 const char STR_GOOGLEMAIL_COM[] = "googlemail.com"; |
| 73 const char STR_DEFAULT_DOMAIN[] = "default.talk.google.com"; | 73 const char STR_DEFAULT_DOMAIN[] = "default.talk.google.com"; |
| 74 const char STR_TALK_GOOGLE_COM[] = "talk.google.com"; | 74 const char STR_TALK_GOOGLE_COM[] = "talk.google.com"; |
| 75 const char STR_TALKX_L_GOOGLE_COM[] = "talkx.l.google.com"; | 75 const char STR_TALKX_L_GOOGLE_COM[] = "talkx.l.google.com"; |
| 76 const char STR_XMPP_GOOGLE_COM[] = "xmpp.google.com"; | 76 const char STR_XMPP_GOOGLE_COM[] = "xmpp.google.com"; |
| 77 const char STR_XMPPX_L_GOOGLE_COM[] = "xmppx.l.google.com"; | 77 const char STR_XMPPX_L_GOOGLE_COM[] = "xmppx.l.google.com"; |
| 78 | 78 |
| 79 #ifdef FEATURE_ENABLE_VOICEMAIL | |
| 80 const char STR_VOICEMAIL[] = "voicemail"; | 79 const char STR_VOICEMAIL[] = "voicemail"; |
| 81 const char STR_OUTGOINGVOICEMAIL[] = "outgoingvoicemail"; | 80 const char STR_OUTGOINGVOICEMAIL[] = "outgoingvoicemail"; |
| 82 #endif | |
| 83 | 81 |
| 84 const char STR_UNAVAILABLE[] = "unavailable"; | 82 const char STR_UNAVAILABLE[] = "unavailable"; |
| 85 | 83 |
| 86 const char NS_PING[] = "urn:xmpp:ping"; | 84 const char NS_PING[] = "urn:xmpp:ping"; |
| 87 const StaticQName QN_PING = { NS_PING, "ping" }; | 85 const StaticQName QN_PING = { NS_PING, "ping" }; |
| 88 | 86 |
| 89 const char NS_MUC_UNIQUE[] = "http://jabber.org/protocol/muc#unique"; | 87 const char NS_MUC_UNIQUE[] = "http://jabber.org/protocol/muc#unique"; |
| 90 const StaticQName QN_MUC_UNIQUE_QUERY = { NS_MUC_UNIQUE, "unique" }; | 88 const StaticQName QN_MUC_UNIQUE_QUERY = { NS_MUC_UNIQUE, "unique" }; |
| 91 const StaticQName QN_HANGOUT_ID = { STR_EMPTY, "hangout-id" }; | 89 const StaticQName QN_HANGOUT_ID = { STR_EMPTY, "hangout-id" }; |
| 92 | 90 |
| (...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 604 { NS_GOOGLE_MUC_MEDIA, "recording" }; | 602 { NS_GOOGLE_MUC_MEDIA, "recording" }; |
| 605 const StaticQName QN_GOOGLE_MUC_MEDIA_BLOCK = { NS_GOOGLE_MUC_MEDIA, "block" }; | 603 const StaticQName QN_GOOGLE_MUC_MEDIA_BLOCK = { NS_GOOGLE_MUC_MEDIA, "block" }; |
| 606 const StaticQName QN_STATE_ATTR = { STR_EMPTY, "state" }; | 604 const StaticQName QN_STATE_ATTR = { STR_EMPTY, "state" }; |
| 607 | 605 |
| 608 const char AUTH_MECHANISM_GOOGLE_COOKIE[] = "X-GOOGLE-COOKIE"; | 606 const char AUTH_MECHANISM_GOOGLE_COOKIE[] = "X-GOOGLE-COOKIE"; |
| 609 const char AUTH_MECHANISM_GOOGLE_TOKEN[] = "X-GOOGLE-TOKEN"; | 607 const char AUTH_MECHANISM_GOOGLE_TOKEN[] = "X-GOOGLE-TOKEN"; |
| 610 const char AUTH_MECHANISM_OAUTH2[] = "X-OAUTH2"; | 608 const char AUTH_MECHANISM_OAUTH2[] = "X-OAUTH2"; |
| 611 const char AUTH_MECHANISM_PLAIN[] = "PLAIN"; | 609 const char AUTH_MECHANISM_PLAIN[] = "PLAIN"; |
| 612 | 610 |
| 613 } // namespace buzz | 611 } // namespace buzz |
| OLD | NEW |