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

Unified Diff: cc/layers/paint_properties.h

Issue 397443002: [not for review] Add Draw entries to window Performance Timeline Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git pull of third_party/WebKit 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: cc/layers/paint_properties.h
diff --git a/cc/layers/paint_properties.h b/cc/layers/paint_properties.h
index 323e9499edb520e9a54fda9f768d7410d0ea68c5..752d971f3df72cf182dd4966138fb6201db8069f 100644
--- a/cc/layers/paint_properties.h
+++ b/cc/layers/paint_properties.h
@@ -5,17 +5,24 @@
#ifndef CC_LAYERS_PAINT_PROPERTIES_H_
#define CC_LAYERS_PAINT_PROPERTIES_H_
+#include <utility>
+#include <vector>
+
+#include "cc/base/cc_export.h"
#include "ui/gfx/size.h"
namespace cc {
// Container for properties that layers need to save before they can be paint.
struct CC_EXPORT PaintProperties {
- PaintProperties() : source_frame_number(-1) {}
+ PaintProperties();
+ ~PaintProperties();
gfx::Size bounds;
int source_frame_number;
+
+ std::vector<std::pair<int, int64_t> > draw_frame_request_ids;
enne (OOO) 2014/07/22 20:44:25 This looks unused. I'm not sure you should be cha
Mike B 2014/07/25 23:09:40 Yes, that was from an earlier iteration and snuck
};
} // namespace cc

Powered by Google App Engine
This is Rietveld 408576698