summaryrefslogtreecommitdiffstats
path: root/chrome/browser/printing/print_preview_test.h
blob: ddfee0e3072c108444d92921608c9d51f35872bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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 "chrome/test/base/browser_with_test_window_test.h"

class PrintPreviewTest : public BrowserWithTestWindowTest {
 public:
  PrintPreviewTest();
  virtual ~PrintPreviewTest();

 protected:
  virtual void SetUp() OVERRIDE;

  // Create a browser window to provide parenting for web contents modal dialog.
  virtual BrowserWindow* CreateBrowserWindow() OVERRIDE;

 private:
  DISALLOW_COPY_AND_ASSIGN(PrintPreviewTest);
};

#endif  // CHROME_BROWSER_PRINTING_PRINT_PREVIEW_TEST_H_