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

Unified Diff: android_webview/browser/browser_view_renderer.cc

Issue 266723016: aw: Fix a few missing initializers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 | android_webview/browser/shared_renderer_state.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/browser/browser_view_renderer.cc
diff --git a/android_webview/browser/browser_view_renderer.cc b/android_webview/browser/browser_view_renderer.cc
index b8613b79dd7e8ac07062489603230228901ebb71..399336285594986b49266b50e2e36086af3bd6cf 100644
--- a/android_webview/browser/browser_view_renderer.cc
+++ b/android_webview/browser/browser_view_renderer.cc
@@ -114,7 +114,9 @@ BrowserViewRenderer::BrowserViewRenderer(
compositor_needs_continuous_invalidate_(false),
block_invalidates_(false),
width_(0),
- height_(0) {
+ height_(0),
+ num_tiles_(0u),
+ num_bytes_(0u) {
hush (inactive) 2014/05/05 17:10:06 right now, BVR does not need these 2 inits for it
boliu 2014/05/05 17:11:46 You mean BVR doesn't need them to be initialized 0
hush (inactive) 2014/05/05 17:25:08 OK. On 2014/05/05 17:11:46, boliu wrote:
CHECK(web_contents_);
content::SynchronousCompositor::SetClientForWebContents(web_contents_, this);
« no previous file with comments | « no previous file | android_webview/browser/shared_renderer_state.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698