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

Side by Side Diff: content/browser/renderer_host/render_message_filter_aura.cc

Issue 7841012: Get chrome to link with USE_AURA (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 months 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/default_plugin/plugin_impl_win.cc ('k') | content/content_browser.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "content/browser/renderer_host/render_message_filter.h"
6
7 // TODO(shess): Provide a mapping from reply_msg->routing_id() to HWND
8 // so that we can eliminate the NativeViewId parameter.
9
10 void RenderMessageFilter::OnGetWindowRect(gfx::NativeViewId window_id,
11 gfx::Rect* rect) {
12 // TODO(beng):
13 NOTIMPLEMENTED();
14 *rect = gfx::Rect();
15 }
16
17 void RenderMessageFilter::OnGetRootWindowRect(gfx::NativeViewId window_id,
18 gfx::Rect* rect) {
19 // TODO(beng):
20 NOTIMPLEMENTED();
21 *rect = gfx::Rect();
22 }
23
24 void RenderMessageFilter::OnGetScreenInfo(gfx::NativeViewId view,
25 WebKit::WebScreenInfo* results) {
26 // TODO(beng):
27 NOTIMPLEMENTED();
28 }
OLDNEW
« no previous file with comments | « chrome/default_plugin/plugin_impl_win.cc ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698