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

Unified Diff: services/ui/public/cpp/gles2_context.h

Issue 2187103002: services/ui: Remove unused connector argument (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix build errors 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 | « services/ui/public/cpp/context_provider.h ('k') | services/ui/public/cpp/lib/bitmap_uploader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/ui/public/cpp/gles2_context.h
diff --git a/services/ui/public/cpp/gles2_context.h b/services/ui/public/cpp/gles2_context.h
index 280f4a7d7b52ad7ea2b8a3ca7d5c0bb6fae3b195..d26499d7494bd5ca61eef01229721555d81ea002 100644
--- a/services/ui/public/cpp/gles2_context.h
+++ b/services/ui/public/cpp/gles2_context.h
@@ -22,10 +22,6 @@ class GLES2CmdHelper;
}
}
-namespace shell {
-class Connector;
-}
-
namespace ui {
class CommandBufferClientImpl;
@@ -39,13 +35,11 @@ class GLES2Context {
gpu::ContextSupport* context_support() const { return implementation_.get(); }
static std::unique_ptr<GLES2Context> CreateOffscreenContext(
- const std::vector<int32_t>& attribs,
- shell::Connector* connector);
+ const std::vector<int32_t>& attribs);
private:
GLES2Context();
- bool Initialize(const std::vector<int32_t>& attribs,
- shell::Connector* connector);
+ bool Initialize(const std::vector<int32_t>& attribs);
std::unique_ptr<CommandBufferClientImpl> command_buffer_client_impl_;
std::unique_ptr<gpu::CommandBufferProxyImpl> command_buffer_proxy_impl_;
« no previous file with comments | « services/ui/public/cpp/context_provider.h ('k') | services/ui/public/cpp/lib/bitmap_uploader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698