| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 | 4 |
| 5 #include "chrome/browser/about_flags.h" | 5 #include "chrome/browser/about_flags.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <iterator> | 8 #include <iterator> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 414 IDS_FLAGS_DISABLE_WEBGL_NAME, | 414 IDS_FLAGS_DISABLE_WEBGL_NAME, |
| 415 IDS_FLAGS_DISABLE_WEBGL_DESCRIPTION, | 415 IDS_FLAGS_DISABLE_WEBGL_DESCRIPTION, |
| 416 kOsDesktop, | 416 kOsDesktop, |
| 417 #if defined(OS_ANDROID) | 417 #if defined(OS_ANDROID) |
| 418 SINGLE_VALUE_TYPE("") | 418 SINGLE_VALUE_TYPE("") |
| 419 #else | 419 #else |
| 420 SINGLE_VALUE_TYPE(switches::kDisableExperimentalWebGL) | 420 SINGLE_VALUE_TYPE(switches::kDisableExperimentalWebGL) |
| 421 #endif | 421 #endif |
| 422 }, | 422 }, |
| 423 { | 423 { |
| 424 "disable-webrtc", | 424 "enable-webrtc", |
| 425 IDS_FLAGS_DISABLE_WEBRTC_NAME, | 425 IDS_FLAGS_ENABLE_WEBRTC_NAME, |
| 426 IDS_FLAGS_DISABLE_WEBRTC_DESCRIPTION, | 426 IDS_FLAGS_ENABLE_WEBRTC_DESCRIPTION, |
| 427 kOsAndroid, | 427 kOsAndroid, |
| 428 #if defined(OS_ANDROID) | 428 #if defined(OS_ANDROID) |
| 429 SINGLE_VALUE_TYPE(switches::kDisableWebRTC) | 429 SINGLE_VALUE_TYPE(switches::kEnableWebRTC) |
| 430 #else | 430 #else |
| 431 SINGLE_VALUE_TYPE("") | 431 SINGLE_VALUE_TYPE("") |
| 432 #endif | 432 #endif |
| 433 }, | 433 }, |
| 434 #if defined(OS_ANDROID) | 434 #if defined(OS_ANDROID) |
| 435 { | 435 { |
| 436 "enable-webaudio", | 436 "enable-webaudio", |
| 437 IDS_FLAGS_ENABLE_WEBAUDIO_NAME, | 437 IDS_FLAGS_ENABLE_WEBAUDIO_NAME, |
| 438 IDS_FLAGS_ENABLE_WEBAUDIO_DESCRIPTION, | 438 IDS_FLAGS_ENABLE_WEBAUDIO_DESCRIPTION, |
| 439 kOsAndroid, | 439 kOsAndroid, |
| (...skipping 1513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1953 } | 1953 } |
| 1954 | 1954 |
| 1955 const Experiment* GetExperiments(size_t* count) { | 1955 const Experiment* GetExperiments(size_t* count) { |
| 1956 *count = num_experiments; | 1956 *count = num_experiments; |
| 1957 return experiments; | 1957 return experiments; |
| 1958 } | 1958 } |
| 1959 | 1959 |
| 1960 } // namespace testing | 1960 } // namespace testing |
| 1961 | 1961 |
| 1962 } // namespace about_flags | 1962 } // namespace about_flags |
| OLD | NEW |