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

  /external/chromium_org/ui/file_manager/file_manager/foreground/js/ui/
file_manager_ui.js 11 * @param {DialogType} dialogType Dialog type.
14 var FileManagerUI = function(element, dialogType) {
24 * @type {DialogType}
27 this.dialogType_ = dialogType;
159 this.dialogType_ == DialogType.SELECT_SAVEAS_FILE;
174 case DialogType.SELECT_UPLOAD_FOLDER:
178 case DialogType.SELECT_SAVEAS_FILE:
182 case DialogType.SELECT_FOLDER:
183 case DialogType.SELECT_OPEN_FILE
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
ChromeClient.h 205 enum DialogType {
211 virtual bool shouldRunModalDialogDuringPageDismissal(const DialogType&, const String&, Document::PageDismissalType) const { return true; }
Chrome.cpp 137 static bool canRunModalIfDuringPageDismissal(Page* page, ChromeClient::DialogType dialog, const String& message)
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
file_selection.js 224 if (this.fileManager_.dialogType == DialogType.SELECT_SAVEAS_FILE) {
253 if (this.fileManager_.dialogType === DialogType.FULL_PAGE &&
278 var dialogType = this.fileManager_.dialogType;
280 if (DialogType.isFolderDialog(dialogType)) {
285 } else if (dialogType == DialogType.SELECT_OPEN_FILE)
    [all...]
file_manager.js 101 * @type {DialogType}
103 this.dialogType = DialogType.FULL_PAGE;
649 var DialogType = {
662 DialogType.isModal = function(type) {
663 return type == DialogType.SELECT_FOLDER ||
664 type == DialogType.SELECT_UPLOAD_FOLDER ||
665 type == DialogType.SELECT_SAVEAS_FILE ||
666 type == DialogType.SELECT_OPEN_FILE ||
667 type == DialogType.SELECT_OPEN_MULTI_FILE
    [all...]
file_manager_commands.js 99 !DialogType.isModal(fileManager.dialogType);
459 (fileManager.dialogType === DialogType.FULL_PAGE);
597 var hideHelp = DialogType.isModal(fileManager.dialogType);
  /external/chromium_org/third_party/WebKit/Source/web/
ChromeClientImpl.h 165 virtual bool shouldRunModalDialogDuringPageDismissal(const DialogType&, const String& dialogMessage, Document::PageDismissalType) const OVERRIDE;
ChromeClientImpl.cpp 760 bool ChromeClientImpl::shouldRunModalDialogDuringPageDismissal(const DialogType& dialogType, const String& dialogMessage, Document::PageDismissalType dismissalType) const
763 int dialog = static_cast<int>(dialogType);

Completed in 959 milliseconds