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

Side by Side Diff: chrome/common/pref_names.cc

Issue 11570081: Support file system access in DevTools with isolated file system. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed Kinuko's comments Created 7 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 | Annotate | Revision Log
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/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 8
9 namespace prefs { 9 namespace prefs {
10 10
(...skipping 1618 matching lines...) Expand 10 before | Expand all | Expand 10 after
1629 const char kNtpAppPageNames[] = "ntp.app_page_names"; 1629 const char kNtpAppPageNames[] = "ntp.app_page_names";
1630 1630
1631 const char kDevToolsDisabled[] = "devtools.disabled"; 1631 const char kDevToolsDisabled[] = "devtools.disabled";
1632 1632
1633 // A string specifying the dock location (either 'bottom' or 'right'). 1633 // A string specifying the dock location (either 'bottom' or 'right').
1634 const char kDevToolsDockSide[] = "devtools.dock_side"; 1634 const char kDevToolsDockSide[] = "devtools.dock_side";
1635 1635
1636 // Maps of files edited locally using DevTools. 1636 // Maps of files edited locally using DevTools.
1637 const char kDevToolsEditedFiles[] = "devtools.edited_files"; 1637 const char kDevToolsEditedFiles[] = "devtools.edited_files";
1638 1638
1639 // List of file system paths added in DevTools.
1640 const char kDevToolsFileSystemPaths[] = "devtools.file_system_paths";
1641
1639 // Integer location of the horizontal split bar in the browser view. 1642 // Integer location of the horizontal split bar in the browser view.
1640 const char kDevToolsHSplitLocation[] = "devtools.split_location"; 1643 const char kDevToolsHSplitLocation[] = "devtools.split_location";
1641 1644
1642 // A boolean specifying whether dev tools window should be opened docked. 1645 // A boolean specifying whether dev tools window should be opened docked.
1643 const char kDevToolsOpenDocked[] = "devtools.open_docked"; 1646 const char kDevToolsOpenDocked[] = "devtools.open_docked";
1644 1647
1645 #if defined(OS_ANDROID) 1648 #if defined(OS_ANDROID)
1646 // A boolean specifying whether remote dev tools debugging is enabled. 1649 // A boolean specifying whether remote dev tools debugging is enabled.
1647 const char kDevToolsRemoteEnabled[] = "devtools.remote_enabled"; 1650 const char kDevToolsRemoteEnabled[] = "devtools.remote_enabled";
1648 #endif 1651 #endif
(...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after
2213 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; 2216 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update";
2214 2217
2215 #if defined(OS_CHROMEOS) 2218 #if defined(OS_CHROMEOS)
2216 // The RLZ brand code, if enabled. 2219 // The RLZ brand code, if enabled.
2217 const char kRLZBrand[] = "rlz.brand"; 2220 const char kRLZBrand[] = "rlz.brand";
2218 // Whether RLZ pings are disabled. 2221 // Whether RLZ pings are disabled.
2219 const char kRLZDisabled[] = "rlz.disabled"; 2222 const char kRLZDisabled[] = "rlz.disabled";
2220 #endif 2223 #endif
2221 2224
2222 } // namespace prefs 2225 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698