summaryrefslogtreecommitdiffstats
path: root/mojo/services/native_viewport
diff options
context:
space:
mode:
authorviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-18 17:07:25 +0000
committerviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-18 17:07:25 +0000
commite9da2b7913d6af558ecfe79e769c3db966f548e8 (patch)
tree2f17e911b08d7c411c087c5a53db9d76716cd7a6 /mojo/services/native_viewport
parentcea159c9938d30c42bbba30bd476496a014419dc (diff)
downloadchromium_src-e9da2b7913d6af558ecfe79e769c3db966f548e8.zip
chromium_src-e9da2b7913d6af558ecfe79e769c3db966f548e8.tar.gz
chromium_src-e9da2b7913d6af558ecfe79e769c3db966f548e8.tar.bz2
Mojo: Cleanup: MOJO_OVERRIDE -> OVERRIDE in places where we use base/.
(mojo/public/ has MOJO_OVERRIDE, since it can't use base/, but we should use the regular OVERRIDE where we can use base/.) R=sky@chromium.org Review URL: https://codereview.chromium.org/202733002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@257665 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'mojo/services/native_viewport')
-rw-r--r--mojo/services/native_viewport/native_viewport_service.cc23
1 files changed, 12 insertions, 11 deletions
diff --git a/mojo/services/native_viewport/native_viewport_service.cc b/mojo/services/native_viewport/native_viewport_service.cc
index 5db656e..fe8729d 100644
--- a/mojo/services/native_viewport/native_viewport_service.cc
+++ b/mojo/services/native_viewport/native_viewport_service.cc
@@ -4,6 +4,7 @@
#include "mojo/services/native_viewport/native_viewport_service.h"
+#include "base/macros.h"
#include "base/message_loop/message_loop.h"
#include "base/time/time.h"
#include "mojo/public/bindings/allocation_scope.h"
@@ -36,7 +37,7 @@ class NativeViewportImpl
pending_event_timestamp_(0) {}
virtual ~NativeViewportImpl() {}
- virtual void Create(const Rect& bounds) MOJO_OVERRIDE {
+ virtual void Create(const Rect& bounds) OVERRIDE {
native_viewport_ =
services::NativeViewport::Create(context(), this);
native_viewport_->Init(bounds);
@@ -44,28 +45,28 @@ class NativeViewportImpl
OnBoundsChanged(bounds);
}
- virtual void Show() MOJO_OVERRIDE {
+ virtual void Show() OVERRIDE {
native_viewport_->Show();
}
- virtual void Hide() MOJO_OVERRIDE {
+ virtual void Hide() OVERRIDE {
native_viewport_->Hide();
}
- virtual void Close() MOJO_OVERRIDE {
+ virtual void Close() OVERRIDE {
command_buffer_.reset();
DCHECK(native_viewport_);
native_viewport_->Close();
}
- virtual void SetBounds(const Rect& bounds) MOJO_OVERRIDE {
+ virtual void SetBounds(const Rect& bounds) OVERRIDE {
gfx::Rect gfx_bounds(bounds.position().x(), bounds.position().y(),
bounds.size().width(), bounds.size().height());
native_viewport_->SetBounds(gfx_bounds);
}
virtual void CreateGLES2Context(ScopedMessagePipeHandle client_handle)
- MOJO_OVERRIDE {
+ OVERRIDE {
if (command_buffer_ || command_buffer_handle_.is_valid()) {
LOG(ERROR) << "Can't create multiple contexts on a NativeViewport";
return;
@@ -81,7 +82,7 @@ class NativeViewportImpl
CreateCommandBufferIfNeeded();
}
- virtual void AckEvent(const Event& event) MOJO_OVERRIDE {
+ virtual void AckEvent(const Event& event) OVERRIDE {
DCHECK_EQ(event.time_stamp(), pending_event_timestamp_);
waiting_for_event_ack_ = false;
}
@@ -99,7 +100,7 @@ class NativeViewportImpl
command_buffer_handle_.Pass(), widget_, native_viewport_->GetSize()));
}
- virtual bool OnEvent(ui::Event* ui_event) MOJO_OVERRIDE {
+ virtual bool OnEvent(ui::Event* ui_event) OVERRIDE {
// Must not return early before updating capture.
switch (ui_event->type()) {
case ui::ET_MOUSE_PRESSED:
@@ -153,18 +154,18 @@ class NativeViewportImpl
}
virtual void OnAcceleratedWidgetAvailable(
- gfx::AcceleratedWidget widget) MOJO_OVERRIDE {
+ gfx::AcceleratedWidget widget) OVERRIDE {
widget_ = widget;
CreateCommandBufferIfNeeded();
}
- virtual void OnBoundsChanged(const gfx::Rect& bounds) MOJO_OVERRIDE {
+ virtual void OnBoundsChanged(const gfx::Rect& bounds) OVERRIDE {
CreateCommandBufferIfNeeded();
AllocationScope scope;
client()->OnBoundsChanged(bounds);
}
- virtual void OnDestroyed() MOJO_OVERRIDE {
+ virtual void OnDestroyed() OVERRIDE {
command_buffer_.reset();
client()->OnDestroyed();
base::MessageLoop::current()->Quit();