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

Side by Side Diff: mojo/examples/surfaces_app/child_gl_app.cc

Issue 629523003: Rename Get to GetProxy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix device 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
« no previous file with comments | « mojo/examples/sample_app/sample_app.cc ('k') | mojo/examples/wget/wget.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #include "base/macros.h" 5 #include "base/macros.h"
6 #include "base/threading/platform_thread.h" 6 #include "base/threading/platform_thread.h"
7 #include "mojo/application/application_runner_chromium.h" 7 #include "mojo/application/application_runner_chromium.h"
8 #include "mojo/examples/surfaces_app/child_gl_impl.h" 8 #include "mojo/examples/surfaces_app/child_gl_impl.h"
9 #include "mojo/public/c/system/main.h" 9 #include "mojo/public/c/system/main.h"
10 #include "mojo/public/cpp/application/application_connection.h" 10 #include "mojo/public/cpp/application/application_connection.h"
(...skipping 21 matching lines...) Expand all
32 virtual bool ConfigureIncomingConnection( 32 virtual bool ConfigureIncomingConnection(
33 ApplicationConnection* connection) override { 33 ApplicationConnection* connection) override {
34 connection->AddService(this); 34 connection->AddService(this);
35 return true; 35 return true;
36 } 36 }
37 37
38 // InterfaceFactory<Child> implementation. 38 // InterfaceFactory<Child> implementation.
39 virtual void Create(ApplicationConnection* connection, 39 virtual void Create(ApplicationConnection* connection,
40 InterfaceRequest<Child> request) override { 40 InterfaceRequest<Child> request) override {
41 CommandBufferPtr command_buffer; 41 CommandBufferPtr command_buffer;
42 gpu_service_->CreateOffscreenGLES2Context(Get(&command_buffer)); 42 gpu_service_->CreateOffscreenGLES2Context(GetProxy(&command_buffer));
43 BindToRequest( 43 BindToRequest(
44 new ChildGLImpl(surfaces_service_connection_, command_buffer.Pass()), 44 new ChildGLImpl(surfaces_service_connection_, command_buffer.Pass()),
45 &request); 45 &request);
46 } 46 }
47 47
48 private: 48 private:
49 ApplicationConnection* surfaces_service_connection_; 49 ApplicationConnection* surfaces_service_connection_;
50 GpuPtr gpu_service_; 50 GpuPtr gpu_service_;
51 51
52 DISALLOW_COPY_AND_ASSIGN(ChildGLApp); 52 DISALLOW_COPY_AND_ASSIGN(ChildGLApp);
53 }; 53 };
54 54
55 } // namespace examples 55 } // namespace examples
56 } // namespace mojo 56 } // namespace mojo
57 57
58 MojoResult MojoMain(MojoHandle shell_handle) { 58 MojoResult MojoMain(MojoHandle shell_handle) {
59 mojo::ApplicationRunnerChromium runner(new mojo::examples::ChildGLApp); 59 mojo::ApplicationRunnerChromium runner(new mojo::examples::ChildGLApp);
60 return runner.Run(shell_handle); 60 return runner.Run(shell_handle);
61 } 61 }
OLDNEW
« no previous file with comments | « mojo/examples/sample_app/sample_app.cc ('k') | mojo/examples/wget/wget.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698