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

Unified Diff: mojo/examples/sample_app/native_viewport_client_impl.h

Issue 93793009: Implement ServiceManager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Allow Android to be built Created 7 years 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 | « mojo/common/handle_watcher.cc ('k') | mojo/examples/sample_app/native_viewport_client_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/examples/sample_app/native_viewport_client_impl.h
diff --git a/mojo/examples/sample_app/native_viewport_client_impl.h b/mojo/examples/sample_app/native_viewport_client_impl.h
deleted file mode 100644
index bd8ff5a7616afae1ff126671c8f0cb5c25587478..0000000000000000000000000000000000000000
--- a/mojo/examples/sample_app/native_viewport_client_impl.h
+++ /dev/null
@@ -1,38 +0,0 @@
-// Copyright 2013 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 MOJO_EXAMPLES_SAMPLE_APP_NATIVE_VIEWPORT_CLIENT_IMPL_H_
-#define MOJO_EXAMPLES_SAMPLE_APP_NATIVE_VIEWPORT_CLIENT_IMPL_H_
-
-#include "base/memory/scoped_ptr.h"
-#include "mojo/examples/sample_app/gles2_client_impl.h"
-#include "mojo/public/bindings/lib/remote_ptr.h"
-#include "mojom/native_viewport.h"
-
-namespace mojo {
-namespace examples {
-
-class NativeViewportClientImpl : public NativeViewportClientStub {
- public:
- explicit NativeViewportClientImpl(ScopedMessagePipeHandle pipe);
- virtual ~NativeViewportClientImpl();
-
- void Open();
-
- private:
- virtual void OnCreated() MOJO_OVERRIDE;
- virtual void OnDestroyed() MOJO_OVERRIDE;
- virtual void OnEvent(const Event& event) MOJO_OVERRIDE;
-
- scoped_ptr<GLES2ClientImpl> gles2_client_;
-
- RemotePtr<NativeViewport> service_;
-
- MOJO_DISALLOW_COPY_AND_ASSIGN(NativeViewportClientImpl);
-};
-
-} // namespace examples
-} // namespace mojo
-
-#endif // MOJO_EXAMPLES_SAMPLE_APP_NATIVE_VIEWPORT_CLIENT_IMPL_H_
« no previous file with comments | « mojo/common/handle_watcher.cc ('k') | mojo/examples/sample_app/native_viewport_client_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698