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

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

Issue 534163002: Move app.window API implementation to extensions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix OWNERS Created 6 years, 3 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 666 matching lines...) Expand 10 before | Expand all | Expand 10 after
677 IDS_FLAGS_ENABLE_FAST_UNLOAD_NAME, 677 IDS_FLAGS_ENABLE_FAST_UNLOAD_NAME,
678 IDS_FLAGS_ENABLE_FAST_UNLOAD_DESCRIPTION, 678 IDS_FLAGS_ENABLE_FAST_UNLOAD_DESCRIPTION,
679 kOsAll, 679 kOsAll,
680 SINGLE_VALUE_TYPE(switches::kEnableFastUnload) 680 SINGLE_VALUE_TYPE(switches::kEnableFastUnload)
681 }, 681 },
682 { 682 {
683 "enable-app-window-controls", 683 "enable-app-window-controls",
684 IDS_FLAGS_ENABLE_APP_WINDOW_CONTROLS_NAME, 684 IDS_FLAGS_ENABLE_APP_WINDOW_CONTROLS_NAME,
685 IDS_FLAGS_ENABLE_APP_WINDOW_CONTROLS_DESCRIPTION, 685 IDS_FLAGS_ENABLE_APP_WINDOW_CONTROLS_DESCRIPTION,
686 kOsDesktop, 686 kOsDesktop,
687 SINGLE_VALUE_TYPE(switches::kEnableAppWindowControls) 687 SINGLE_VALUE_TYPE(extensions::switches::kEnableAppWindowControls)
688 }, 688 },
689 { 689 {
690 "disable-hyperlink-auditing", 690 "disable-hyperlink-auditing",
691 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_NAME, 691 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_NAME,
692 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_DESCRIPTION, 692 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_DESCRIPTION,
693 kOsAll, 693 kOsAll,
694 SINGLE_VALUE_TYPE(switches::kNoPings) 694 SINGLE_VALUE_TYPE(switches::kNoPings)
695 }, 695 },
696 #if defined(OS_ANDROID) 696 #if defined(OS_ANDROID)
697 { 697 {
(...skipping 1775 matching lines...) Expand 10 before | Expand all | Expand 10 after
2473 } 2473 }
2474 2474
2475 const Experiment* GetExperiments(size_t* count) { 2475 const Experiment* GetExperiments(size_t* count) {
2476 *count = num_experiments; 2476 *count = num_experiments;
2477 return experiments; 2477 return experiments;
2478 } 2478 }
2479 2479
2480 } // namespace testing 2480 } // namespace testing
2481 2481
2482 } // namespace about_flags 2482 } // namespace about_flags
OLDNEW
« no previous file with comments | « athena/content/web_contents_view_delegate_factory_impl.cc ('k') | chrome/browser/apps/window_controls_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698