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

Unified Diff: content/renderer/internal_document_state_data.h

Issue 240163005: Deliver IPC messages together with SwapCompositorFrame (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: disable browsertest for android for realz this time Created 6 years, 5 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
Index: content/renderer/internal_document_state_data.h
diff --git a/content/renderer/internal_document_state_data.h b/content/renderer/internal_document_state_data.h
index def89de18109e913dd4607f5abf83c2beaa0496e..d9c8c9f814fa8ed0cad39b6480b3275f609dd72d 100644
--- a/content/renderer/internal_document_state_data.h
+++ b/content/renderer/internal_document_state_data.h
@@ -37,16 +37,6 @@ class InternalDocumentStateData : public base::SupportsUserData::Data {
did_first_visually_non_empty_layout_ = value;
}
- // Set to true once RenderViewImpl::DidFlushPaint() is inovked after
- // RenderViewImpl::didFirstVisuallyNonEmptyLayout(). In other words after the
- // page has painted something.
- bool did_first_visually_non_empty_paint() const {
- return did_first_visually_non_empty_paint_;
- }
- void set_did_first_visually_non_empty_paint(bool value) {
- did_first_visually_non_empty_paint_ = value;
- }
-
int http_status_code() const { return http_status_code_; }
void set_http_status_code(int http_status_code) {
http_status_code_ = http_status_code;

Powered by Google App Engine
This is Rietveld 408576698