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

  /external/chromium_org/third_party/WebKit/Source/core/page/
WindowFeatures.h 82 static bool boolFeature(const DialogFeaturesMap&, const char* key, bool defaultValue = false);
WindowFeatures.cpp 181 // - dialogHide: trusted && boolFeature(features, "dialoghide"), makes dialog hide when you print
182 // - help: boolFeature(features, "help", true), makes help icon appear in dialog (what does it do on Windows?)
183 // - unadorned: trusted && boolFeature(features, "unadorned");
193 if (boolFeature(features, "center", true)) {
204 resizable = boolFeature(features, "resizable");
205 scrollbarsVisible = boolFeature(features, "scroll", true);
206 statusBarVisible = boolFeature(features, "status", !trusted);
209 bool WindowFeatures::boolFeature(const DialogFeaturesMap& features, const char* key, bool defaultValue)

Completed in 79 milliseconds