summaryrefslogtreecommitdiffstats
path: root/mojo/examples/surfaces_app/embedder.h
diff options
context:
space:
mode:
Diffstat (limited to 'mojo/examples/surfaces_app/embedder.h')
-rw-r--r--mojo/examples/surfaces_app/embedder.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/mojo/examples/surfaces_app/embedder.h b/mojo/examples/surfaces_app/embedder.h
index 4e04dfd..56212f3 100644
--- a/mojo/examples/surfaces_app/embedder.h
+++ b/mojo/examples/surfaces_app/embedder.h
@@ -23,7 +23,7 @@ namespace examples {
// Simple example of a surface embedder that embeds two other surfaces.
class Embedder {
public:
- explicit Embedder(surfaces::Surface* surface);
+ explicit Embedder(Surface* surface);
~Embedder();
void SetSurfaceId(cc::SurfaceId id) { id_ = id; }
@@ -35,7 +35,7 @@ class Embedder {
private:
cc::SurfaceId id_;
- surfaces::Surface* surface_;
+ Surface* surface_;
DISALLOW_COPY_AND_ASSIGN(Embedder);
};