HomeSort by relevance Sort by last modified time
    Searched refs:floatFeature (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/page/
WindowFeatures.h 83 static float floatFeature(const DialogFeaturesMap&, const char* key, float min, float max, float defaultValue);
WindowFeatures.cpp 185 width = floatFeature(features, "dialogwidth", 100, screenAvailableRect.width(), 620); // default here came from frame size of dialog in MacIE
186 height = floatFeature(features, "dialogheight", 100, screenAvailableRect.height(), 450); // default here came from frame size of dialog in MacIE
188 x = floatFeature(features, "dialogleft", screenAvailableRect.x(), screenAvailableRect.maxX() - width, -1);
190 y = floatFeature(features, "dialogtop", screenAvailableRect.y(), screenAvailableRect.maxY() - height, -1);
218 float WindowFeatures::floatFeature(const DialogFeaturesMap& features, const char* key, float min, float max, float defaultValue)

Completed in 703 milliseconds