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

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

Issue 18137007: DevTools: add about:flag for ADB-less remote debugging. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: For landing Created 7 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/devtools/adb/android_rsa.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 <algorithm> 7 #include <algorithm>
8 #include <iterator> 8 #include <iterator>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 908 matching lines...) Expand 10 before | Expand all | Expand 10 after
919 }, 919 },
920 #endif 920 #endif
921 { 921 {
922 "enable-devtools-experiments", 922 "enable-devtools-experiments",
923 IDS_FLAGS_ENABLE_DEVTOOLS_EXPERIMENTS_NAME, 923 IDS_FLAGS_ENABLE_DEVTOOLS_EXPERIMENTS_NAME,
924 IDS_FLAGS_ENABLE_DEVTOOLS_EXPERIMENTS_DESCRIPTION, 924 IDS_FLAGS_ENABLE_DEVTOOLS_EXPERIMENTS_DESCRIPTION,
925 kOsDesktop, 925 kOsDesktop,
926 SINGLE_VALUE_TYPE(switches::kEnableDevToolsExperiments) 926 SINGLE_VALUE_TYPE(switches::kEnableDevToolsExperiments)
927 }, 927 },
928 { 928 {
929 "remote-debugging-raw-usb",
930 IDS_FLAGS_REMOTE_DEBUGGING_RAW_USB_NAME,
931 IDS_FLAGS_REMOTE_DEBUGGING_RAW_USB_DESCRIPTION,
932 kOsDesktop,
933 SINGLE_VALUE_TYPE(switches::kRemoteDebuggingRawUSB)
934 },
935 {
929 "silent-debugger-extension-api", 936 "silent-debugger-extension-api",
930 IDS_FLAGS_SILENT_DEBUGGER_EXTENSION_API_NAME, 937 IDS_FLAGS_SILENT_DEBUGGER_EXTENSION_API_NAME,
931 IDS_FLAGS_SILENT_DEBUGGER_EXTENSION_API_DESCRIPTION, 938 IDS_FLAGS_SILENT_DEBUGGER_EXTENSION_API_DESCRIPTION,
932 kOsDesktop, 939 kOsDesktop,
933 SINGLE_VALUE_TYPE(switches::kSilentDebuggerExtensionAPI) 940 SINGLE_VALUE_TYPE(switches::kSilentDebuggerExtensionAPI)
934 }, 941 },
935 { 942 {
936 "enable-suggestions-ntp", 943 "enable-suggestions-ntp",
937 IDS_FLAGS_NTP_SUGGESTIONS_PAGE_NAME, 944 IDS_FLAGS_NTP_SUGGESTIONS_PAGE_NAME,
938 IDS_FLAGS_NTP_SUGGESTIONS_PAGE_DESCRIPTION, 945 IDS_FLAGS_NTP_SUGGESTIONS_PAGE_DESCRIPTION,
(...skipping 1174 matching lines...) Expand 10 before | Expand all | Expand 10 after
2113 } 2120 }
2114 2121
2115 const Experiment* GetExperiments(size_t* count) { 2122 const Experiment* GetExperiments(size_t* count) {
2116 *count = num_experiments; 2123 *count = num_experiments;
2117 return experiments; 2124 return experiments;
2118 } 2125 }
2119 2126
2120 } // namespace testing 2127 } // namespace testing
2121 2128
2122 } // namespace about_flags 2129 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/devtools/adb/android_rsa.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698