• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (c) 2011 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 "chrome/browser/printing/cloud_print/cloud_print_setup_handler.h"
6 
CloudPrintSetupHandler(Delegate * handler)7 CloudPrintSetupHandler::CloudPrintSetupHandler(Delegate* handler)
8     : handler_(handler) {}
9 
~CloudPrintSetupHandler()10 CloudPrintSetupHandler::~CloudPrintSetupHandler() {}
11 
OnDialogClosed()12 void CloudPrintSetupHandler::OnDialogClosed() {
13   DCHECK(handler_);
14   handler_->OnCloudPrintSetupClosed();
15 }
16