summaryrefslogtreecommitdiffstats
path: root/cc/texture_uploader.h
diff options
context:
space:
mode:
Diffstat (limited to 'cc/texture_uploader.h')
-rw-r--r--cc/texture_uploader.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cc/texture_uploader.h b/cc/texture_uploader.h
index 0734783..c317f05 100644
--- a/cc/texture_uploader.h
+++ b/cc/texture_uploader.h
@@ -9,7 +9,7 @@
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "cc/scoped_ptr_deque.h"
-#include <deque>
+#include <set>
#include "third_party/khronos/GLES2/gl2.h"
namespace WebKit {
@@ -87,7 +87,7 @@ private:
WebKit::WebGraphicsContext3D* m_context;
ScopedPtrDeque<Query> m_pendingQueries;
ScopedPtrDeque<Query> m_availableQueries;
- std::deque<double> m_texturesPerSecondHistory;
+ std::multiset<double> m_texturesPerSecondHistory;
size_t m_numBlockingTextureUploads;
bool m_useMapTexSubImage;