OLD | NEW |
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 #ifndef CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_PRINT_SETTINGS_MANAGER_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_PRINT_SETTINGS_MANAGER_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_PRINT_SETTINGS_MANAGER_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_PRINT_SETTINGS_MANAGER_H_ |
7 | 7 |
8 #include "base/bind.h" | 8 #include "base/bind.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
(...skipping 18 matching lines...) Expand all Loading... |
29 | 29 |
30 // Real implementation for getting the default print settings. | 30 // Real implementation for getting the default print settings. |
31 class CONTENT_EXPORT PepperPrintSettingsManagerImpl | 31 class CONTENT_EXPORT PepperPrintSettingsManagerImpl |
32 : public PepperPrintSettingsManager { | 32 : public PepperPrintSettingsManager { |
33 public: | 33 public: |
34 PepperPrintSettingsManagerImpl() {} | 34 PepperPrintSettingsManagerImpl() {} |
35 virtual ~PepperPrintSettingsManagerImpl() {} | 35 virtual ~PepperPrintSettingsManagerImpl() {} |
36 | 36 |
37 // PepperPrintSettingsManager implementation. | 37 // PepperPrintSettingsManager implementation. |
38 virtual void GetDefaultPrintSettings( | 38 virtual void GetDefaultPrintSettings( |
39 PepperPrintSettingsManager::Callback callback) OVERRIDE; | 39 PepperPrintSettingsManager::Callback callback) override; |
40 | 40 |
41 private: | 41 private: |
42 DISALLOW_COPY_AND_ASSIGN(PepperPrintSettingsManagerImpl); | 42 DISALLOW_COPY_AND_ASSIGN(PepperPrintSettingsManagerImpl); |
43 }; | 43 }; |
44 | 44 |
45 } // namespace content | 45 } // namespace content |
46 | 46 |
47 #endif // CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_PRINT_SETTINGS_MANAGER_H_ | 47 #endif // CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_PRINT_SETTINGS_MANAGER_H_ |
OLD | NEW |