blob: ffd76ffe6de55f7bcfc6e596bf72421c4deb58a4 [file] [log] [blame]
// Copyright (c) 2012 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.
#ifndef CHROME_BROWSER_PRINTING_PRINT_PREVIEW_TEST_H_
#define CHROME_BROWSER_PRINTING_PRINT_PREVIEW_TEST_H_
#include "base/macros.h"
#include "chrome/test/base/browser_with_test_window_test.h"
class PrintPreviewTest : public BrowserWithTestWindowTest {
public:
PrintPreviewTest();
~PrintPreviewTest() override;
protected:
void SetUp() override;
// Create a browser window to provide parenting for web contents modal dialog.
BrowserWindow* CreateBrowserWindow() override;
private:
DISALLOW_COPY_AND_ASSIGN(PrintPreviewTest);
};
#endif // CHROME_BROWSER_PRINTING_PRINT_PREVIEW_TEST_H_