Home | History | Annotate | Download | only in web_modal
      1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 #include "components/web_modal/web_contents_modal_dialog_manager_delegate.h"
      6 
      7 #include <string.h>
      8 
      9 namespace web_modal {
     10 
     11 void WebContentsModalDialogManagerDelegate::SetWebContentsBlocked(
     12     content::WebContents* web_contents, bool blocked) {
     13 }
     14 
     15 WebContentsModalDialogHost*
     16     WebContentsModalDialogManagerDelegate::GetWebContentsModalDialogHost() {
     17   return NULL;
     18 }
     19 
     20 bool WebContentsModalDialogManagerDelegate::IsWebContentsVisible(
     21     content::WebContents* web_contents) {
     22   return true;
     23 }
     24 
     25 WebContentsModalDialogManagerDelegate::~WebContentsModalDialogManagerDelegate(
     26 ) {}
     27 
     28 }  // namespace web_modal
     29