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

Side by Side Diff: chrome/browser/printing/printer_manager_dialog_win.cc

Issue 6903083: PrintPreview:[MAC & WIN] Added code to show the native printer management dialog. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Addressed review comments Created 9 years, 8 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/printer_manager_dialog.h"
6
7 #include <windows.h>
8 #include <shellapi.h>
9
10 #include "base/file_path.h"
11 #include "base/path_service.h"
12 #include "base/threading/thread.h"
13 #include "chrome/browser/browser_process.h"
14
15 namespace printing {
16
17 // A helper method that opens the printer management dialog.
18 class OpenPrintersDialogTask : public Task {
19 public:
20 OpenPrintersDialogTask() {}
21
22 virtual void Run() {
23 FilePath sys_dir;
24 PathService::Get(base::DIR_SYSTEM, &sys_dir);
25 FilePath rundll32 = sys_dir.AppendASCII("rundll32.exe");
26 FilePath shell32dll = sys_dir.AppendASCII("shell32.dll");
27
28 std::wstring args(shell32dll.value());
29 args.append(L",SHHelpShortcuts_RunDLL PrintersFolder");
30 ShellExecute(NULL, L"open", rundll32.value().c_str(), args.c_str(), NULL,
31 SW_SHOWNORMAL);
32 }
33
34 private:
35 DISALLOW_COPY_AND_ASSIGN(OpenPrintersDialogTask);
36 };
37
38 void PrinterManagerDialog::ShowPrinterManagerDialog() {
39 g_browser_process->file_thread()->message_loop()->PostTask(
40 FROM_HERE, new OpenPrintersDialogTask);
41 }
42
43 } // namespace printing
OLDNEW
« no previous file with comments | « chrome/browser/printing/printer_manager_dialog_mac.mm ('k') | chrome/browser/resources/print_preview.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698