Searched refs:boolFeature (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/page/
H A DWindowFeatures.h86 static bool boolFeature(const DialogFeaturesMap&, const char* key, bool defaultValue = false);
H A DWindowFeatures.cpp186 // - dialogHide: trusted && boolFeature(features, "dialoghide"), makes dialog hide when you print
187 // - help: boolFeature(features, "help", true), makes help icon appear in dialog (what does it do on Windows?)
188 // - unadorned: trusted && boolFeature(features, "unadorned");
198 if (boolFeature(features, "center", true)) {
209 resizable = boolFeature(features, "resizable");
210 scrollbarsVisible = boolFeature(features, "scroll", true);
211 statusBarVisible = boolFeature(features, "status", !trusted);
214 bool WindowFeatures::boolFeature(const DialogFeaturesMap& features, const char* key, bool defaultValue) function in class:blink::WindowFeatures

Completed in 626 milliseconds