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

Side by Side Diff: chrome/browser/ui/libgtk2ui/print_dialog_gtk2.h

Issue 627043002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[a-s]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef CHROME_BROWSER_UI_LIBGTK2UI_PRINT_DIALOG_GTK2_H_ 5 #ifndef CHROME_BROWSER_UI_LIBGTK2UI_PRINT_DIALOG_GTK2_H_
6 #define CHROME_BROWSER_UI_LIBGTK2UI_PRINT_DIALOG_GTK2_H_ 6 #define CHROME_BROWSER_UI_LIBGTK2UI_PRINT_DIALOG_GTK2_H_
7 7
8 #include <gtk/gtk.h> 8 #include <gtk/gtk.h>
9 #include <gtk/gtkunixprint.h> 9 #include <gtk/gtkunixprint.h>
10 10
(...skipping 19 matching lines...) Expand all
30 : public printing::PrintDialogGtkInterface, 30 : public printing::PrintDialogGtkInterface,
31 public base::RefCountedThreadSafe< 31 public base::RefCountedThreadSafe<
32 PrintDialogGtk2, content::BrowserThread::DeleteOnUIThread>, 32 PrintDialogGtk2, content::BrowserThread::DeleteOnUIThread>,
33 public aura::WindowObserver { 33 public aura::WindowObserver {
34 public: 34 public:
35 // Creates and returns a print dialog. 35 // Creates and returns a print dialog.
36 static printing::PrintDialogGtkInterface* CreatePrintDialog( 36 static printing::PrintDialogGtkInterface* CreatePrintDialog(
37 PrintingContextLinux* context); 37 PrintingContextLinux* context);
38 38
39 // printing::PrintDialogGtkInterface implementation. 39 // printing::PrintDialogGtkInterface implementation.
40 virtual void UseDefaultSettings() OVERRIDE; 40 virtual void UseDefaultSettings() override;
41 virtual bool UpdateSettings(printing::PrintSettings* settings) OVERRIDE; 41 virtual bool UpdateSettings(printing::PrintSettings* settings) override;
42 virtual void ShowDialog( 42 virtual void ShowDialog(
43 gfx::NativeView parent_view, 43 gfx::NativeView parent_view,
44 bool has_selection, 44 bool has_selection,
45 const PrintingContextLinux::PrintSettingsCallback& callback) OVERRIDE; 45 const PrintingContextLinux::PrintSettingsCallback& callback) override;
46 virtual void PrintDocument(const printing::MetafilePlayer& metafile, 46 virtual void PrintDocument(const printing::MetafilePlayer& metafile,
47 const base::string16& document_name) OVERRIDE; 47 const base::string16& document_name) override;
48 virtual void AddRefToDialog() OVERRIDE; 48 virtual void AddRefToDialog() override;
49 virtual void ReleaseDialog() OVERRIDE; 49 virtual void ReleaseDialog() override;
50 50
51 private: 51 private:
52 friend struct content::BrowserThread::DeleteOnThread< 52 friend struct content::BrowserThread::DeleteOnThread<
53 content::BrowserThread::UI>; 53 content::BrowserThread::UI>;
54 friend class base::DeleteHelper<PrintDialogGtk2>; 54 friend class base::DeleteHelper<PrintDialogGtk2>;
55 55
56 explicit PrintDialogGtk2(PrintingContextLinux* context); 56 explicit PrintDialogGtk2(PrintingContextLinux* context);
57 virtual ~PrintDialogGtk2(); 57 virtual ~PrintDialogGtk2();
58 58
59 // Handles dialog response. 59 // Handles dialog response.
60 CHROMEGTK_CALLBACK_1(PrintDialogGtk2, void, OnResponse, int); 60 CHROMEGTK_CALLBACK_1(PrintDialogGtk2, void, OnResponse, int);
61 61
62 // Prints document named |document_name|. 62 // Prints document named |document_name|.
63 void SendDocumentToPrinter(const base::string16& document_name); 63 void SendDocumentToPrinter(const base::string16& document_name);
64 64
65 // Handles print job response. 65 // Handles print job response.
66 static void OnJobCompletedThunk(GtkPrintJob* print_job, 66 static void OnJobCompletedThunk(GtkPrintJob* print_job,
67 gpointer user_data, 67 gpointer user_data,
68 GError* error); 68 GError* error);
69 void OnJobCompleted(GtkPrintJob* print_job, GError* error); 69 void OnJobCompleted(GtkPrintJob* print_job, GError* error);
70 70
71 // Helper function for initializing |context_|'s PrintSettings with a given 71 // Helper function for initializing |context_|'s PrintSettings with a given
72 // |settings|. 72 // |settings|.
73 void InitPrintSettings(printing::PrintSettings* settings); 73 void InitPrintSettings(printing::PrintSettings* settings);
74 74
75 // aura::WindowObserver implementation. 75 // aura::WindowObserver implementation.
76 virtual void OnWindowDestroying(aura::Window* window) OVERRIDE; 76 virtual void OnWindowDestroying(aura::Window* window) override;
77 77
78 // Printing dialog callback. 78 // Printing dialog callback.
79 PrintingContextLinux::PrintSettingsCallback callback_; 79 PrintingContextLinux::PrintSettingsCallback callback_;
80 PrintingContextLinux* context_; 80 PrintingContextLinux* context_;
81 81
82 // Print dialog settings. PrintDialogGtk2 owns |dialog_| and holds references 82 // Print dialog settings. PrintDialogGtk2 owns |dialog_| and holds references
83 // to the other objects. 83 // to the other objects.
84 GtkWidget* dialog_; 84 GtkWidget* dialog_;
85 GtkPrintSettings* gtk_settings_; 85 GtkPrintSettings* gtk_settings_;
86 GtkPageSetup* page_setup_; 86 GtkPageSetup* page_setup_;
87 GtkPrinter* printer_; 87 GtkPrinter* printer_;
88 88
89 base::FilePath path_to_pdf_; 89 base::FilePath path_to_pdf_;
90 90
91 DISALLOW_COPY_AND_ASSIGN(PrintDialogGtk2); 91 DISALLOW_COPY_AND_ASSIGN(PrintDialogGtk2);
92 }; 92 };
93 93
94 #endif // CHROME_BROWSER_UI_LIBGTK2UI_PRINT_DIALOG_GTK2_H_ 94 #endif // CHROME_BROWSER_UI_LIBGTK2UI_PRINT_DIALOG_GTK2_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/libgtk2ui/native_theme_gtk2.h ('k') | chrome/browser/ui/libgtk2ui/select_file_dialog_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698