| Index: mojo/services/native_viewport/native_viewport_delegate.h
|
| diff --git a/mojo/services/native_viewport/native_viewport_delegate.h b/mojo/services/native_viewport/native_viewport_delegate.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..21a730c9013352858412c336292f57f29355cd1c
|
| --- /dev/null
|
| +++ b/mojo/services/native_viewport/native_viewport_delegate.h
|
| @@ -0,0 +1,30 @@
|
| +// 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_SERVICES_NATIVE_VIEWPORT_NATIVE_VIEWPORT_DELEGATE_H_
|
| +#define MOJO_SERVICES_NATIVE_VIEWPORT_NATIVE_VIEWPORT_DELEGATE_H_
|
| +
|
| +namespace gfx {
|
| +class Size;
|
| +}
|
| +namespace ui {
|
| +class Event;
|
| +}
|
| +
|
| +namespace mojo {
|
| +namespace services {
|
| +
|
| +class NativeViewportDelegate {
|
| + public:
|
| + virtual ~NativeViewportDelegate() {}
|
| +
|
| + virtual bool OnEvent(ui::Event* event) = 0;
|
| +
|
| + virtual void OnResized(const gfx::Size& size) = 0;
|
| +};
|
| +
|
| +} // namespace services
|
| +} // namespace mojo
|
| +
|
| +#endif // MOJO_SERVICES_NATIVE_VIEWPORT_NATIVE_VIEWPORT_DELEGATE_H_
|
|
|