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..6c4c10b1fef84257cfd97cc295187a62c1bfaf3a 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() |
+ : program_id(0) |
+{ |
+} |
+ |
+TexturedQuadDrawCache::~TexturedQuadDrawCache() |
+{ |
+} |
+ |