Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: chrome/browser/printing/cloud_print/cloud_print_setup_handler.cc

Issue 6685008: Cloud print signin crash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase past Windows views options removal. Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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
7 CloudPrintSetupHandler::CloudPrintSetupHandler(Delegate* handler)
8 : handler_(handler) {}
9
10 CloudPrintSetupHandler::~CloudPrintSetupHandler() {}
11
12 void CloudPrintSetupHandler::OnDialogClosed() {
13 DCHECK(handler_);
14 handler_->OnCloudPrintSetupClosed();
15 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698