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

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

Issue 1598553003: Implement the Windows desktop search redirection feature. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: don't assume that a Browser exists + fix nits Created 4 years, 11 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 #else 74 #else
75 #include "ui/message_center/message_center_switches.h" 75 #include "ui/message_center/message_center_switches.h"
76 #endif 76 #endif
77 77
78 #if defined(OS_CHROMEOS) 78 #if defined(OS_CHROMEOS)
79 #include "chromeos/chromeos_switches.h" 79 #include "chromeos/chromeos_switches.h"
80 #include "third_party/cros_system_api/switches/chrome_switches.h" 80 #include "third_party/cros_system_api/switches/chrome_switches.h"
81 #endif 81 #endif
82 82
83 #if defined(OS_WIN) 83 #if defined(OS_WIN)
84 #include "components/search_engines/desktop_search_win.h" 84 #include "components/search_engines/desktop_search_utils_win.h"
85 #endif // defined(OS_WIN) 85 #endif // defined(OS_WIN)
86 86
87 #if defined(ENABLE_APP_LIST) 87 #if defined(ENABLE_APP_LIST)
88 #include "ui/app_list/app_list_switches.h" 88 #include "ui/app_list/app_list_switches.h"
89 #endif 89 #endif
90 90
91 #if defined(ENABLE_EXTENSIONS) 91 #if defined(ENABLE_EXTENSIONS)
92 #include "extensions/common/switches.h" 92 #include "extensions/common/switches.h"
93 #endif 93 #endif
94 94
(...skipping 2246 matching lines...) Expand 10 before | Expand all | Expand 10 after
2341 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; 2341 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0;
2342 2342
2343 const FeatureEntry* GetFeatureEntries(size_t* count) { 2343 const FeatureEntry* GetFeatureEntries(size_t* count) {
2344 *count = arraysize(kFeatureEntries); 2344 *count = arraysize(kFeatureEntries);
2345 return kFeatureEntries; 2345 return kFeatureEntries;
2346 } 2346 }
2347 2347
2348 } // namespace testing 2348 } // namespace testing
2349 2349
2350 } // namespace about_flags 2350 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698