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

Unified Diff: cc/throttled_texture_uploader_unittest.cc

Issue 11150025: Patch from https://codereview.chromium.org/11111005/ without actual file deletes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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 | « cc/throttled_texture_uploader.cc ('k') | cc/tile_draw_quad.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/throttled_texture_uploader_unittest.cc
diff --git a/cc/throttled_texture_uploader_unittest.cc b/cc/throttled_texture_uploader_unittest.cc
index ca60324ab7d0bc4490c2c519348f5e3d65778d62..7969e318aaac9e8f4f8b8bfd7b7775c7812aec4b 100644
--- a/cc/throttled_texture_uploader_unittest.cc
+++ b/cc/throttled_texture_uploader_unittest.cc
@@ -7,12 +7,12 @@
#include "ThrottledTextureUploader.h"
#include "CCPrioritizedTexture.h"
-#include "Extensions3DChromium.h"
#include "FakeWebGraphicsContext3D.h"
-#include "GraphicsContext3D.h"
-
+#include "third_party/khronos/GLES2/gl2ext.h"
+#include "third_party/khronos/GLES2/gl2.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
+#include "FakeWebGraphicsContext3D.h"
#include <wtf/RefPtr.h>
using namespace cc;
@@ -26,10 +26,10 @@ public:
{
}
- virtual void getQueryObjectuivEXT(WebGLId, GC3Denum type, GC3Duint* value)
+ virtual void getQueryObjectuivEXT(WebGLId, WGC3Denum type, WGC3Duint* value)
{
switch (type) {
- case Extensions3DChromium::QUERY_RESULT_AVAILABLE_EXT:
+ case GL_QUERY_RESULT_AVAILABLE_EXT:
*value = m_resultAvailable;
break;
default:
« no previous file with comments | « cc/throttled_texture_uploader.cc ('k') | cc/tile_draw_quad.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698