Index: cc/gl_renderer_draw_cache.cc |
diff --git a/chrome/test/data/extensions/platform_apps/minimal_id/test.js b/cc/gl_renderer_draw_cache.cc |
similarity index 50% |
copy from chrome/test/data/extensions/platform_apps/minimal_id/test.js |
copy to cc/gl_renderer_draw_cache.cc |
index 5436724b395b2b741cce125c542f3eae81dfa4a5..765e0cc86cd15c1aade901db4aa9cbdd0f1b2f29 100644 |
--- a/chrome/test/data/extensions/platform_apps/minimal_id/test.js |
+++ b/cc/gl_renderer_draw_cache.cc |
@@ -2,6 +2,15 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-chrome.app.runtime.onLaunched.addListener(function() { |
- chrome.app.window.create('main.html', {id: 'minimal_id'}); |
-}); |
+#include "cc/gl_renderer_draw_cache.h" |
+ |
+ |
+TexturedQuadDrawCache::TexturedQuadDrawCache() |
+ : programID(0) |
+{ |
+} |
+ |
+TexturedQuadDrawCache::~TexturedQuadDrawCache() |
+{ |
+} |
+ |