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

Unified Diff: content/browser/renderer_host/pepper/pepper_print_settings_manager.h

Issue 10826072: Implement browser side of PPB_Printing resource. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/renderer_host/pepper/pepper_print_settings_manager.h
diff --git a/content/browser/renderer_host/pepper/pepper_print_settings_manager.h b/content/browser/renderer_host/pepper/pepper_print_settings_manager.h
new file mode 100644
index 0000000000000000000000000000000000000000..ab45b97099ab39b5a0960dac2fef1a9f4d707a1d
--- /dev/null
+++ b/content/browser/renderer_host/pepper/pepper_print_settings_manager.h
@@ -0,0 +1,63 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_PRINT_SETTINGS_MANAGER_H_
+#define CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_PRINT_SETTINGS_MANAGER_H_
+
+#include "base/bind.h"
+#include "base/compiler_specific.h"
+#include "content/common/content_export.h"
+#include "ppapi/c/dev/pp_print_settings_dev.h"
+
+namespace content {
+
+// A class for getting the default print settings for the default printer.
+class CONTENT_EXPORT PepperPrintSettingsManager {
+ public:
+ typedef std::pair<PP_PrintSettings_Dev, int32_t> Result;
+ typedef base::Callback<void(Result)> Callback;
+
+ // The default print settings are obtained asynchronously and |callback|
+ // is called with the the print settings when they are available. |callback|
+ // will always be called on the same thread from which
+ // |GetDefaultPrintSettings| was issued.
+ virtual void GetDefaultPrintSettings(Callback callback) = 0;
+
+ virtual ~PepperPrintSettingsManager() {};
brettw 2012/09/18 21:41:38 Remove ;
raymes 2012/09/18 23:43:57 Done.
+};
+
+// Real implementation for getting the default print settings.
+class CONTENT_EXPORT PepperPrintSettingsManagerImpl
+ : public PepperPrintSettingsManager {
+ public:
+ PepperPrintSettingsManagerImpl() {}
+ virtual ~PepperPrintSettingsManagerImpl() {}
+
+ // PepperPrintSettingsManager implementation.
+ virtual void GetDefaultPrintSettings(
+ PepperPrintSettingsManager::Callback callback) OVERRIDE;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(PepperPrintSettingsManagerImpl);
+};
+
+// Mock implementation for test purposes.
brettw 2012/09/18 21:41:38 Is it possible to just define this in the unit tes
raymes 2012/09/18 23:43:57 Done.
+class CONTENT_EXPORT MockPepperPrintSettingsManager
+ : public PepperPrintSettingsManager {
+ public:
+ MockPepperPrintSettingsManager(const PP_PrintSettings_Dev& settings);
+ virtual ~MockPepperPrintSettingsManager() {}
+
+ // PepperPrintSettingsManager implementation.
+ virtual void GetDefaultPrintSettings(
+ PepperPrintSettingsManager::Callback callback) OVERRIDE;
+ private:
+ PP_PrintSettings_Dev settings_;
+
+ DISALLOW_COPY_AND_ASSIGN(MockPepperPrintSettingsManager);
+};
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_PRINT_SETTINGS_MANAGER_H_

Powered by Google App Engine
This is Rietveld 408576698