| Index: chrome/browser/printing/print_view_manager_basic.cc
|
| diff --git a/chrome/browser/printing/print_view_manager_basic.cc b/chrome/browser/printing/print_view_manager_basic.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6f524d173596597191f26eaa8292b86f3c3dee6f
|
| --- /dev/null
|
| +++ b/chrome/browser/printing/print_view_manager_basic.cc
|
| @@ -0,0 +1,18 @@
|
| +// Copyright (c) 2013 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "chrome/browser/printing/print_view_manager_basic.h"
|
| +
|
| +DEFINE_WEB_CONTENTS_USER_DATA_KEY(printing::PrintViewManagerBasic);
|
| +
|
| +namespace printing {
|
| +
|
| +PrintViewManagerBasic::PrintViewManagerBasic(content::WebContents* web_contents)
|
| + : PrintViewManagerBase(web_contents) {
|
| +}
|
| +
|
| +PrintViewManagerBasic::~PrintViewManagerBasic() {
|
| +}
|
| +
|
| +} // namespace printing
|
|
|