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

Side by Side Diff: chrome/browser/about_flags.cc

Issue 699333003: Support InputMethodManager#updateCursorAnchorInfo for Android 5.0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move the core logic into Java side Created 5 years, 10 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 (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 <iterator> 7 #include <iterator>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
(...skipping 2126 matching lines...) Expand 10 before | Expand all | Expand 10 after
2137 SINGLE_VALUE_TYPE(switches::kEnableDelayAgnosticAec) 2137 SINGLE_VALUE_TYPE(switches::kEnableDelayAgnosticAec)
2138 }, 2138 },
2139 2139
2140 { 2140 {
2141 "mark-non-secure-as", // FLAGS:RECORD_UMA 2141 "mark-non-secure-as", // FLAGS:RECORD_UMA
2142 IDS_MARK_NON_SECURE_AS_NAME, 2142 IDS_MARK_NON_SECURE_AS_NAME,
2143 IDS_MARK_NON_SECURE_AS_DESCRIPTION, 2143 IDS_MARK_NON_SECURE_AS_DESCRIPTION,
2144 kOsAll, 2144 kOsAll,
2145 MULTI_VALUE_TYPE(kMarkNonSecureAsChoices) 2145 MULTI_VALUE_TYPE(kMarkNonSecureAsChoices)
2146 }, 2146 },
2147 #if defined(OS_ANDROID)
2148 {
2149 "enable-cursor-anchor-info",
2150 IDS_FLAGS_ENABLE_CURSOR_ANCHOR_INFO_NAME,
2151 IDS_FLAGS_ENABLE_CURSOR_ANCHOR_INFO_DESCRIPTION,
2152 kOsAndroid,
2153 SINGLE_VALUE_TYPE(switches::kEnableCursorAnchorInfo)
2154 },
2155 #endif
2147 2156
2148 { 2157 {
2149 "enable-site-per-process", 2158 "enable-site-per-process",
2150 IDS_FLAGS_ENABLE_SITE_PER_PROCESS_NAME, 2159 IDS_FLAGS_ENABLE_SITE_PER_PROCESS_NAME,
2151 IDS_FLAGS_ENABLE_SITE_PER_PROCESS_DESCRIPTION, 2160 IDS_FLAGS_ENABLE_SITE_PER_PROCESS_DESCRIPTION,
2152 kOsAll, 2161 kOsAll,
2153 SINGLE_VALUE_TYPE(switches::kSitePerProcess) 2162 SINGLE_VALUE_TYPE(switches::kSitePerProcess)
2154 }, 2163 },
2155 #if defined(OS_CHROMEOS) 2164 #if defined(OS_CHROMEOS)
2156 { 2165 {
(...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after
2733 } 2742 }
2734 2743
2735 const Experiment* GetExperiments(size_t* count) { 2744 const Experiment* GetExperiments(size_t* count) {
2736 *count = num_experiments; 2745 *count = num_experiments;
2737 return experiments; 2746 return experiments;
2738 } 2747 }
2739 2748
2740 } // namespace testing 2749 } // namespace testing
2741 2750
2742 } // namespace about_flags 2751 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698