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

Unified Diff: ui/android/context_provider_factory.h

Issue 2190033002: content: Add ContextProviderFactory to create a render ContextProvider. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move ContextProviderFactory to ui Created 4 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
« no previous file with comments | « ui/android/DEPS ('k') | ui/android/context_provider_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/android/context_provider_factory.h
diff --git a/ui/android/context_provider_factory.h b/ui/android/context_provider_factory.h
new file mode 100644
index 0000000000000000000000000000000000000000..212f6388364f454255db3c635e5c1491a042c715
--- /dev/null
+++ b/ui/android/context_provider_factory.h
@@ -0,0 +1,50 @@
+// Copyright 2016 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 UI_ANDROID_CONTEXT_PROVIDER_FACTORY_H_
+#define UI_ANDROID_CONTEXT_PROVIDER_FACTORY_H_
+
+#include "base/callback.h"
+#include "base/memory/ref_counted.h"
+#include "ui/android/ui_android_export.h"
+
+namespace cc {
+class ContextProvider;
+class VulkanContextProvider;
+}
+
+namespace ui {
+
+// This class is not thread-safe and should only be accessed from the UI thread.
+class UI_ANDROID_EXPORT ContextProviderFactory {
danakj 2016/07/29 01:26:15 Hm, I'm planning to make a ContextProvider::Factor
Khushal 2016/07/29 02:07:36 Your change looks like it is to have cc embedder p
+ public:
+ struct ContextProviders {
+ ContextProviders();
+ ~ContextProviders();
+
+ scoped_refptr<cc::VulkanContextProvider> vulkan_context_provider;
+
+ scoped_refptr<cc::ContextProvider> compositor_context_provider;
+ scoped_refptr<cc::ContextProvider> worker_context_provider;
+ };
+
+ using ContextProviderCallback = base::Callback<void(const ContextProviders&)>;
+
+ static ContextProviderFactory* GetInstance();
+
+ // This should only be called once, on startup. Ownership remains with the
+ // caller.
+ static void SetInstance(ContextProviderFactory* context_provider_factory);
+
+ virtual ~ContextProviderFactory(){};
+
+ // Creates a ContextProvider with an offscreen context for a compositor
+ // rendering web content.
+ virtual void RequestRenderContextProvider(
+ ContextProviderCallback result_callback) = 0;
+};
+
+} // namespace ui
+
+#endif // UI_ANDROID_CONTEXT_PROVIDER_FACTORY_H_
« no previous file with comments | « ui/android/DEPS ('k') | ui/android/context_provider_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698