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

Unified Diff: content/browser/renderer_host/render_widget_host_view_aura.cc

Issue 8343023: rename Run in MessageLoopForUI to RunWithDispatcher (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync Created 9 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/browser_main.cc ('k') | ui/aura/desktop.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/render_widget_host_view_aura.cc
diff --git a/content/browser/renderer_host/render_widget_host_view_aura.cc b/content/browser/renderer_host/render_widget_host_view_aura.cc
index 8ff3036fdf34f65decc0884841fef8270d91ea1b..e9e2992fabe7d6d55f8bbbde826656fb193f403e 100644
--- a/content/browser/renderer_host/render_widget_host_view_aura.cc
+++ b/content/browser/renderer_host/render_widget_host_view_aura.cc
@@ -95,7 +95,7 @@ gfx::NativeView RenderWidgetHostViewAura::GetNativeView() const {
}
gfx::NativeViewId RenderWidgetHostViewAura::GetNativeViewId() const {
- return NULL;
+ return static_cast<gfx::NativeViewId>(NULL);
}
void RenderWidgetHostViewAura::MovePluginWindows(
@@ -339,7 +339,7 @@ bool RenderWidgetHostViewAura::OnKeyEvent(aura::KeyEvent* event) {
gfx::NativeCursor RenderWidgetHostViewAura::GetCursor(const gfx::Point& point) {
// TODO(beng): talk to beng before implementing this.
//NOTIMPLEMENTED();
- return NULL;
+ return gfx::kNullCursor;
}
int RenderWidgetHostViewAura::GetNonClientComponent(
« no previous file with comments | « content/browser/browser_main.cc ('k') | ui/aura/desktop.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698