Commit 02a8cb54 authored by achuith@chromium.org's avatar achuith@chromium.org

About flag support for use-leveldb-for-gdata

BUG=127856
TEST=manual
Review URL: https://chromiumcodereview.appspot.com/10830178

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150157 0039d316-1c4b-4281-b951-d872f2087c98
parent ad07ba96
...@@ -5934,6 +5934,12 @@ Keep your key file in a safe place. You will need it to create new versions of y ...@@ -5934,6 +5934,12 @@ Keep your key file in a safe place. You will need it to create new versions of y
<message name="IDS_FLAGS_ENABLE_DRIVE_V2_API_DESCRIPTION" desc="Description for the flag to enable Drive V2 API."> <message name="IDS_FLAGS_ENABLE_DRIVE_V2_API_DESCRIPTION" desc="Description for the flag to enable Drive V2 API.">
Enables to use Drive V2 API for accessing Google Drive folder. Enables to use Drive V2 API for accessing Google Drive folder.
</message> </message>
<message name="IDS_FLAGS_USE_LEVELDB_FOR_GDATA_NAME" desc="Name for the flag to use level db for drive metadata storage.">
Use level db for drive metadata storage.
</message>
<message name="IDS_FLAGS_USE_LEVELDB_FOR_GDATA_DESCRIPTION" desc="Description for the flag to to use level db for drive metadata storage.">
Use level db for drive metadata storage instead of proto file.
</message>
<message name="IDS_FLAGS_DISABLE_HTML5_CAMERA" desc="Name for the flag to disable new camera WebUI."> <message name="IDS_FLAGS_DISABLE_HTML5_CAMERA" desc="Name for the flag to disable new camera WebUI.">
Disable HTML5 camera in WebUI. Disable HTML5 camera in WebUI.
</message> </message>
...@@ -5945,7 +5951,7 @@ Keep your key file in a safe place. You will need it to create new versions of y ...@@ -5945,7 +5951,7 @@ Keep your key file in a safe place. You will need it to create new versions of y
</message> </message>
<message name="IDS_FLAGS_DISABLE_NEW_OOBE_DESCRIPTION" desc="Description for the flag to disable new design for OOBE / sign in flows."> <message name="IDS_FLAGS_DISABLE_NEW_OOBE_DESCRIPTION" desc="Description for the flag to disable new design for OOBE / sign in flows.">
Disables new design for OOBE / sign in flows. Disables new design for OOBE / sign in flows.
</message> </message>
<message name="IDS_FLAGS_DISABLE_BOOT_ANIMATION" desc="Name for the flag to disable wallpaper boot animation (except for OOBE)."> <message name="IDS_FLAGS_DISABLE_BOOT_ANIMATION" desc="Name for the flag to disable wallpaper boot animation (except for OOBE).">
Disable boot animation. Disable boot animation.
</message> </message>
......
...@@ -810,6 +810,13 @@ const Experiment kExperiments[] = { ...@@ -810,6 +810,13 @@ const Experiment kExperiments[] = {
kOsCrOS, kOsCrOS,
SINGLE_VALUE_TYPE(switches::kEnableDriveV2Api), SINGLE_VALUE_TYPE(switches::kEnableDriveV2Api),
}, },
{
"use-leveldb-for-gdata",
IDS_FLAGS_USE_LEVELDB_FOR_GDATA_NAME,
IDS_FLAGS_USE_LEVELDB_FOR_GDATA_DESCRIPTION,
kOsCrOS,
SINGLE_VALUE_TYPE(switches::kUseLevelDBForGData),
},
{ {
"disable-html5-camera", "disable-html5-camera",
IDS_FLAGS_DISABLE_HTML5_CAMERA, IDS_FLAGS_DISABLE_HTML5_CAMERA,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment