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

Unified Diff: cc/output/program_binding.h

Issue 61553006: Rename WebKit namespace to blink (part 5) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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/output/gl_renderer_unittest.cc ('k') | cc/output/program_binding.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/output/program_binding.h
diff --git a/cc/output/program_binding.h b/cc/output/program_binding.h
index 01efa9c1c90a81508cc34cabdc21a09e2b3e17cc..4c11902ecad0174899afccc6b87d2420a8f3c2df 100644
--- a/cc/output/program_binding.h
+++ b/cc/output/program_binding.h
@@ -11,7 +11,7 @@
#include "cc/output/context_provider.h"
#include "cc/output/shader.h"
-namespace WebKit { class WebGraphicsContext3D; }
+namespace blink { class WebGraphicsContext3D; }
namespace cc {
@@ -20,23 +20,23 @@ class ProgramBindingBase {
ProgramBindingBase();
~ProgramBindingBase();
- bool Init(WebKit::WebGraphicsContext3D* context,
+ bool Init(blink::WebGraphicsContext3D* context,
const std::string& vertex_shader,
const std::string& fragment_shader);
- bool Link(WebKit::WebGraphicsContext3D* context);
- void Cleanup(WebKit::WebGraphicsContext3D* context);
+ bool Link(blink::WebGraphicsContext3D* context);
+ void Cleanup(blink::WebGraphicsContext3D* context);
unsigned program() const { return program_; }
bool initialized() const { return initialized_; }
protected:
- unsigned LoadShader(WebKit::WebGraphicsContext3D* context,
+ unsigned LoadShader(blink::WebGraphicsContext3D* context,
unsigned type,
const std::string& shader_source);
- unsigned CreateShaderProgram(WebKit::WebGraphicsContext3D* context,
+ unsigned CreateShaderProgram(blink::WebGraphicsContext3D* context,
unsigned vertex_shader,
unsigned fragment_shader);
- void CleanupShaders(WebKit::WebGraphicsContext3D* context);
+ void CleanupShaders(blink::WebGraphicsContext3D* context);
unsigned program_;
unsigned vertex_shader_id_;
« no previous file with comments | « cc/output/gl_renderer_unittest.cc ('k') | cc/output/program_binding.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698