Bug 979720: Follow-up to fix stupid PTO-brain naming mistake. r=me

This commit is contained in:
Kartikaya Gupta 2014-03-14 15:55:07 -04:00
parent 11bd32947b
commit 7457155d44
3 changed files with 3 additions and 3 deletions

View File

@ -872,7 +872,7 @@ pref("apz.pan_repaint_interval", 16);
// Maximum fling velocity in inches/ms. Slower devices may need to reduce this
// to avoid checkerboarding. Note, float value must be set as a string.
pref("apz.max_velocity_pixels_per_inch", "0.0375");
pref("apz.max_velocity_inches_per_ms", "0.0375");
// Tweak default displayport values to reduce the risk of running out of
// memory when zooming in

View File

@ -66,7 +66,7 @@ namespace layers {
*/
/**
* "apz.max_velocity_pixels_per_inch"
* "apz.max_velocity_inches_per_ms"
*
* Maximum velocity in inches per millisecond. Velocity will be capped at this
* value if a faster fling occurs. Negative values indicate unlimited velocity.

View File

@ -106,7 +106,7 @@ private:
DECL_GFX_PREF(Once, "apz.fling_friction", APZFlingFriction, float, 0.002f);
DECL_GFX_PREF(Once, "apz.fling_stopped_threshold", APZFlingStoppedThreshold, float, 0.01f);
DECL_GFX_PREF(Once, "apz.max_event_acceleration", APZMaxEventAcceleration, float, 999.0f);
DECL_GFX_PREF(Once, "apz.max_velocity_pixels_per_inch", APZMaxVelocity, float, -1.0f);
DECL_GFX_PREF(Once, "apz.max_velocity_inches_per_ms", APZMaxVelocity, float, -1.0f);
DECL_GFX_PREF(Once, "apz.max_velocity_queue_size", APZMaxVelocityQueueSize, uint32_t, 5);
DECL_GFX_PREF(Once, "gfx.android.rgb16.force", AndroidRGB16Force, bool, false);