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

Side by Side Diff: components/onc/onc_constants.h

Issue 1283613005: Add networkingPrivate.getThirdPartyVpnProviderList (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@issue_515987_cr_network_list
Patch Set: Rebase Created 5 years, 4 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #ifndef COMPONENTS_ONC_ONC_CONSTANTS_H_ 4 #ifndef COMPONENTS_ONC_ONC_CONSTANTS_H_
5 #define COMPONENTS_ONC_ONC_CONSTANTS_H_ 5 #define COMPONENTS_ONC_ONC_CONSTANTS_H_
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "components/onc/onc_export.h" 9 #include "components/onc/onc_export.h"
10 10
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 390
391 namespace openvpn_user_auth_type { 391 namespace openvpn_user_auth_type {
392 ONC_EXPORT extern const char kNone[]; 392 ONC_EXPORT extern const char kNone[];
393 ONC_EXPORT extern const char kOTP[]; 393 ONC_EXPORT extern const char kOTP[];
394 ONC_EXPORT extern const char kPassword[]; 394 ONC_EXPORT extern const char kPassword[];
395 ONC_EXPORT extern const char kPasswordAndOTP[]; 395 ONC_EXPORT extern const char kPasswordAndOTP[];
396 } // openvpn_user_auth_type 396 } // openvpn_user_auth_type
397 397
398 namespace third_party_vpn { 398 namespace third_party_vpn {
399 ONC_EXPORT extern const char kExtensionID[]; 399 ONC_EXPORT extern const char kExtensionID[];
400 ONC_EXPORT extern const char kName[];
400 } // third_party_vpn 401 } // third_party_vpn
401 402
402 namespace verify_x509 { 403 namespace verify_x509 {
403 ONC_EXPORT extern const char kName[]; 404 ONC_EXPORT extern const char kName[];
404 ONC_EXPORT extern const char kType[]; 405 ONC_EXPORT extern const char kType[];
405 406
406 namespace types { 407 namespace types {
407 ONC_EXPORT extern const char kName[]; 408 ONC_EXPORT extern const char kName[];
408 ONC_EXPORT extern const char kNamePrefix[]; 409 ONC_EXPORT extern const char kNamePrefix[];
409 ONC_EXPORT extern const char kSubject[]; 410 ONC_EXPORT extern const char kSubject[];
(...skipping 27 matching lines...) Expand all
437 namespace device_state { 438 namespace device_state {
438 ONC_EXPORT extern const char kUninitialized[]; 439 ONC_EXPORT extern const char kUninitialized[];
439 ONC_EXPORT extern const char kDisabled[]; 440 ONC_EXPORT extern const char kDisabled[];
440 ONC_EXPORT extern const char kEnabling[]; 441 ONC_EXPORT extern const char kEnabling[];
441 ONC_EXPORT extern const char kEnabled[]; 442 ONC_EXPORT extern const char kEnabled[];
442 } // device_state 443 } // device_state
443 444
444 } // namespace onc 445 } // namespace onc
445 446
446 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ 447 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698