summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chrome/app/generated_resources.grd6
-rw-r--r--chrome/browser/about_flags.cc7
2 files changed, 13 insertions, 0 deletions
diff --git a/chrome/app/generated_resources.grd b/chrome/app/generated_resources.grd
index 4f7e3c0..e0a9d77 100644
--- a/chrome/app/generated_resources.grd
+++ b/chrome/app/generated_resources.grd
@@ -4014,6 +4014,12 @@ Keep your key file in a safe place. You will need it to create new versions of y
<message name="IDS_FLAGS_ACCELERATED_COMPOSITING_DESCRIPTION" desc="Description of the 'GPU Accelerated Compositing' lab.">
Enables 3D CSS and higher performance compositing of web pages using Graphics Processor Unit (GPU) hardware.
</message>
+ <message name="IDS_FLAGS_COMPOSITED_LAYER_BORDERS" desc="Name of the 'Composited layer borders' lab.">
+ Composited render layer borders.
+ </message>
+ <message name="IDS_FLAGS_COMPOSITED_LAYER_BORDERS_DESCRIPTION" desc="Description of the 'Composited layer borders' lab.">
+ Renders a border around composited Render Layers to help debug and study layer compositing.
+ </message>
<message name="IDS_FLAGS_ACCELERATED_CANVAS_2D_NAME" desc="Name of the 'GPU Accelerated Canvas 2D' lab.">
GPU Accelerated Canvas 2D
</message>
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
index 6755aa2..9b8460d 100644
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -152,6 +152,13 @@ const Experiment kExperiments[] = {
SINGLE_VALUE_TYPE(switches::kEnableAcceleratedLayers)
},
{
+ "composited-layer-borders",
+ IDS_FLAGS_COMPOSITED_LAYER_BORDERS,
+ IDS_FLAGS_COMPOSITED_LAYER_BORDERS_DESCRIPTION,
+ kOsAll,
+ SINGLE_VALUE_TYPE(switches::kShowCompositedLayerBorders)
+ },
+ {
"gpu-canvas-2d", // FLAGS:RECORD_UMA
IDS_FLAGS_ACCELERATED_CANVAS_2D_NAME,
IDS_FLAGS_ACCELERATED_CANVAS_2D_DESCRIPTION,