Index: content/browser/renderer_host/render_message_filter_aura.cc |
=================================================================== |
--- content/browser/renderer_host/render_message_filter_aura.cc (revision 109708) |
+++ content/browser/renderer_host/render_message_filter_aura.cc (working copy) |
@@ -1,31 +0,0 @@ |
-// Copyright (c) 2011 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. |
- |
-#include "content/browser/renderer_host/render_message_filter.h" |
- |
-#include "ui/gfx/rect.h" |
- |
-// TODO(shess): Provide a mapping from reply_msg->routing_id() to HWND |
-// so that we can eliminate the NativeViewId parameter. |
-#if defined(OS_WIN) |
-void RenderMessageFilter::OnGetWindowRect(gfx::NativeViewId window_id, |
- gfx::Rect* rect) { |
- // TODO(beng): |
- NOTIMPLEMENTED(); |
- *rect = gfx::Rect(); |
-} |
- |
-void RenderMessageFilter::OnGetRootWindowRect(gfx::NativeViewId window_id, |
- gfx::Rect* rect) { |
- // TODO(beng): |
- NOTIMPLEMENTED(); |
- *rect = gfx::Rect(); |
-} |
- |
-void RenderMessageFilter::OnGetScreenInfo(gfx::NativeViewId view, |
- WebKit::WebScreenInfo* results) { |
- // TODO(beng): |
- NOTIMPLEMENTED(); |
-} |
-#endif // OS_WIN |