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

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

Issue 12035111: Move file_util_proxy to base/files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/printing/print_dialog_gtk.h" 5 #include "chrome/browser/printing/print_dialog_gtk.h"
6 6
7 #include <fcntl.h> 7 #include <fcntl.h>
8 #include <gtk/gtkunixprint.h> 8 #include <gtk/gtkunixprint.h>
9 #include <sys/stat.h> 9 #include <sys/stat.h>
10 #include <sys/types.h> 10 #include <sys/types.h>
11 11
12 #include <string> 12 #include <string>
13 #include <vector> 13 #include <vector>
14 14
15 #include "base/bind.h" 15 #include "base/bind.h"
16 #include "base/file_util.h" 16 #include "base/file_util.h"
17 #include "base/file_util_proxy.h" 17 #include "base/files/file_util_proxy.h"
18 #include "base/logging.h" 18 #include "base/logging.h"
19 #include "base/message_loop_proxy.h" 19 #include "base/message_loop_proxy.h"
20 #include "base/utf_string_conversions.h" 20 #include "base/utf_string_conversions.h"
21 #include "base/values.h" 21 #include "base/values.h"
22 #include "printing/metafile.h" 22 #include "printing/metafile.h"
23 #include "printing/print_job_constants.h" 23 #include "printing/print_job_constants.h"
24 #include "printing/print_settings.h" 24 #include "printing/print_settings.h"
25 #include "printing/print_settings_initializer_gtk.h" 25 #include "printing/print_settings_initializer_gtk.h"
26 26
27 using content::BrowserThread; 27 using content::BrowserThread;
(...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after
420 // Printing finished. Matches AddRef() in PrintDocument(); 420 // Printing finished. Matches AddRef() in PrintDocument();
421 Release(); 421 Release();
422 } 422 }
423 423
424 void PrintDialogGtk::InitPrintSettings(const PageRanges& page_ranges, 424 void PrintDialogGtk::InitPrintSettings(const PageRanges& page_ranges,
425 PrintSettings* settings) { 425 PrintSettings* settings) {
426 printing::PrintSettingsInitializerGtk::InitPrintSettings( 426 printing::PrintSettingsInitializerGtk::InitPrintSettings(
427 gtk_settings_, page_setup_, page_ranges, false, settings); 427 gtk_settings_, page_setup_, page_ranges, false, settings);
428 context_->InitWithSettings(*settings); 428 context_->InitWithSettings(*settings);
429 } 429 }
OLDNEW
« no previous file with comments | « chrome/browser/nacl_host/nacl_process_host.h ('k') | chrome/browser/ui/webui/help/help_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698