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

Unified Diff: webkit/gpu/webgraphicscontext3d_in_process_impl.cc

Issue 6250088: Cleanup everything but net/ for our first clang plugins. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 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: webkit/gpu/webgraphicscontext3d_in_process_impl.cc
diff --git a/webkit/gpu/webgraphicscontext3d_in_process_impl.cc b/webkit/gpu/webgraphicscontext3d_in_process_impl.cc
index 3721bbf1c86d5a9644083765dcac4e4513027c82..3e97073f67024580b50ca667617b53ef6340b1af 100644
--- a/webkit/gpu/webgraphicscontext3d_in_process_impl.cc
+++ b/webkit/gpu/webgraphicscontext3d_in_process_impl.cc
@@ -25,6 +25,19 @@ enum {
MAX_FRAGMENT_UNIFORM_VECTORS = 0x8DFD
};
+struct WebGraphicsContext3DInProcessImpl::ShaderSourceEntry {
+ explicit ShaderSourceEntry(WGC3Denum shader_type)
+ : type(shader_type),
+ is_valid(false) {
+ }
+
+ WGC3Denum type;
+ scoped_array<char> source;
+ scoped_array<char> log;
+ scoped_array<char> translated_source;
+ bool is_valid;
+};
+
WebGraphicsContext3DInProcessImpl::WebGraphicsContext3DInProcessImpl()
: initialized_(false),
render_directly_to_web_view_(false),

Powered by Google App Engine
This is Rietveld 408576698