blob: 1c9161983c48b37b0ae9491a96dbe75519692660 (
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
27
28
29
30
31
|
// Copyright (c) 2011 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_DIALOG_CLOUD_H_
#define CHROME_BROWSER_PRINTING_PRINT_DIALOG_CLOUD_H_
#pragma once
#include <string>
#include "base/basictypes.h"
#include "base/string16.h"
class FilePath;
class CommandLine;
namespace print_dialog_cloud {
// Called on the FILE or UI thread. Even though this may start up a modal
// dialog, it will return immediately. The dialog is handled asynchronously.
void CreatePrintDialogForFile(const FilePath& path_to_file,
const string16& print_job_title,
const std::string& file_type,
bool modal);
// Parse switches from command_line and display the print dialog as appropriate.
bool CreatePrintDialogFromCommandLine(const CommandLine& command_line);
} // end namespace
#endif // CHROME_BROWSER_PRINTING_PRINT_DIALOG_CLOUD_H_
|