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

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

Issue 2812113004: Write last_modified date to Content Settings in the PrefProvider (Closed)
Patch Set: rebase Created 3 years, 7 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
« no previous file with comments | « no previous file | chrome/browser/android/chrome_feature_list.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 2322 matching lines...) Expand 10 before | Expand all | Expand 10 after
2333 flag_descriptions::kFullscreenToolbarRevealName, 2333 flag_descriptions::kFullscreenToolbarRevealName,
2334 flag_descriptions::kFullscreenToolbarRevealDescription, kOsMac, 2334 flag_descriptions::kFullscreenToolbarRevealDescription, kOsMac,
2335 SINGLE_VALUE_TYPE(switches::kEnableFullscreenToolbarReveal)}, 2335 SINGLE_VALUE_TYPE(switches::kEnableFullscreenToolbarReveal)},
2336 #endif // OS_MACOSX 2336 #endif // OS_MACOSX
2337 #if defined(OS_ANDROID) 2337 #if defined(OS_ANDROID)
2338 {"important-sites-in-cbd", flag_descriptions::kImportantSitesInCbdName, 2338 {"important-sites-in-cbd", flag_descriptions::kImportantSitesInCbdName,
2339 flag_descriptions::kImportantSitesInCbdDescription, kOsAndroid, 2339 flag_descriptions::kImportantSitesInCbdDescription, kOsAndroid,
2340 FEATURE_VALUE_TYPE(chrome::android::kImportantSitesInCBD)}, 2340 FEATURE_VALUE_TYPE(chrome::android::kImportantSitesInCBD)},
2341 {"tabs-in-cbd", flag_descriptions::kTabsInCbdName, 2341 {"tabs-in-cbd", flag_descriptions::kTabsInCbdName,
2342 flag_descriptions::kTabsInCbdDescription, kOsAndroid, 2342 flag_descriptions::kTabsInCbdDescription, kOsAndroid,
2343 FEATURE_VALUE_TYPE(chrome::android::kTabsInCBD)}, 2343 FEATURE_VALUE_TYPE(features::kTabsInCbd)},
2344 #endif // OS_ANDROID 2344 #endif // OS_ANDROID
2345 {"enable-pointer-events", flag_descriptions::kExperimentalPointerEventName, 2345 {"enable-pointer-events", flag_descriptions::kExperimentalPointerEventName,
2346 flag_descriptions::kExperimentalPointerEventDescription, kOsAll, 2346 flag_descriptions::kExperimentalPointerEventDescription, kOsAll,
2347 FEATURE_VALUE_TYPE(features::kPointerEvents)}, 2347 FEATURE_VALUE_TYPE(features::kPointerEvents)},
2348 {"passive-listener-default", 2348 {"passive-listener-default",
2349 flag_descriptions::kPassiveEventListenerDefaultName, 2349 flag_descriptions::kPassiveEventListenerDefaultName,
2350 flag_descriptions::kPassiveEventListenerDefaultDescription, kOsAll, 2350 flag_descriptions::kPassiveEventListenerDefaultDescription, kOsAll,
2351 MULTI_VALUE_TYPE(kPassiveListenersChoices)}, 2351 MULTI_VALUE_TYPE(kPassiveListenersChoices)},
2352 {"document-passive-event-listeners", 2352 {"document-passive-event-listeners",
2353 flag_descriptions::kPassiveDocumentEventListenersName, 2353 flag_descriptions::kPassiveDocumentEventListenersName,
(...skipping 653 matching lines...) Expand 10 before | Expand all | Expand 10 after
3007 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; 3007 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0;
3008 3008
3009 const FeatureEntry* GetFeatureEntries(size_t* count) { 3009 const FeatureEntry* GetFeatureEntries(size_t* count) {
3010 *count = arraysize(kFeatureEntries); 3010 *count = arraysize(kFeatureEntries);
3011 return kFeatureEntries; 3011 return kFeatureEntries;
3012 } 3012 }
3013 3013
3014 } // namespace testing 3014 } // namespace testing
3015 3015
3016 } // namespace about_flags 3016 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/android/chrome_feature_list.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698