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

Side by Side Diff: content/browser/renderer_host/pepper/pepper_print_settings_manager.h

Issue 616603004: Replacing the OVERRIDE with override and FINAL with final in content/browser/renderer_host (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch 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 (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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698