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

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

Issue 11098054: Removing webkit diff with Android tree (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 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 | « no previous file | webkit/media/android/audio_decoder_android.cc » ('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_android.cc
diff --git a/content/browser/renderer_host/render_widget_host_view_android.cc b/content/browser/renderer_host/render_widget_host_view_android.cc
index 3060c6e4657541450a7cb24e2cfde5a21b02de64..79d8a4fd3e43e61828a12c035f865fc598b8b8c8 100644
--- a/content/browser/renderer_host/render_widget_host_view_android.cc
+++ b/content/browser/renderer_host/render_widget_host_view_android.cc
@@ -454,7 +454,7 @@ void RenderWidgetHostViewAndroid::DidSetNeedTouchEvents(
// static
void RenderWidgetHostViewPort::GetDefaultScreenInfo(
- ::WebKit::WebScreenInfo* results) {
+ WebKit::WebScreenInfo* results) {
DeviceInfo info;
const int width = info.GetWidth();
const int height = info.GetHeight();
@@ -463,9 +463,9 @@ void RenderWidgetHostViewPort::GetDefaultScreenInfo(
results->depth = info.GetBitsPerPixel();
results->depthPerComponent = info.GetBitsPerComponent();
results->isMonochrome = (results->depthPerComponent == 0);
- results->rect = ::WebKit::WebRect(0, 0, width, height);
+ results->rect = WebKit::WebRect(0, 0, width, height);
// TODO(husky): Remove any system controls from availableRect.
- results->availableRect = ::WebKit::WebRect(0, 0, width, height);
+ results->availableRect = WebKit::WebRect(0, 0, width, height);
}
////////////////////////////////////////////////////////////////////////////////
« no previous file with comments | « no previous file | webkit/media/android/audio_decoder_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698