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

Unified Diff: content/test/content_test_suite.h

Issue 1128113011: ozone: Introduce ClientPixmap and ClientPixmapFactory for non-GPU processes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed nits Created 5 years, 5 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/test/content_test_suite.h
diff --git a/content/test/content_test_suite.h b/content/test/content_test_suite.h
index 6991b99cf62ef506c6f68e605e8538528ac46881..9a643eee0645f264cd1e580e9f4c813a0a247053 100644
--- a/content/test/content_test_suite.h
+++ b/content/test/content_test_suite.h
@@ -12,6 +12,12 @@
#include "base/win/scoped_com_initializer.h"
#endif
+#if defined(USE_OZONE)
+namespace ui {
+class ClientNativePixmapManager;
+} // namespace ui
+#endif
+
namespace content {
class ContentTestSuite : public ContentTestSuiteBase {
@@ -26,6 +32,9 @@ class ContentTestSuite : public ContentTestSuiteBase {
#if defined(OS_WIN)
base::win::ScopedCOMInitializer com_initializer_;
#endif
+#if defined(USE_OZONE)
+ scoped_ptr<ui::ClientNativePixmapManager> client_native_pixmap_manager_;
+#endif
DISALLOW_COPY_AND_ASSIGN(ContentTestSuite);
};

Powered by Google App Engine
This is Rietveld 408576698