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

Unified Diff: cc/scheduler/texture_uploader.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/resources/video_resource_updater.cc ('k') | cc/scheduler/texture_uploader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/scheduler/texture_uploader.h
diff --git a/cc/scheduler/texture_uploader.h b/cc/scheduler/texture_uploader.h
index 5b1b1d833274e1b84d304e70fef90e305fa4a0b9..66e60c12aae573e883f4a01dc6cb5e88fa7191e7 100644
--- a/cc/scheduler/texture_uploader.h
+++ b/cc/scheduler/texture_uploader.h
@@ -13,7 +13,7 @@
#include "cc/base/scoped_ptr_deque.h"
#include "cc/resources/resource_provider.h"
-namespace WebKit { class WebGraphicsContext3D; }
+namespace blink { class WebGraphicsContext3D; }
namespace gfx {
class Rect;
@@ -26,7 +26,7 @@ namespace cc {
class CC_EXPORT TextureUploader {
public:
static scoped_ptr<TextureUploader> Create(
- WebKit::WebGraphicsContext3D* context,
+ blink::WebGraphicsContext3D* context,
bool use_map_tex_sub_image,
bool use_shallow_flush) {
return make_scoped_ptr(
@@ -55,7 +55,7 @@ class CC_EXPORT TextureUploader {
private:
class Query {
public:
- static scoped_ptr<Query> Create(WebKit::WebGraphicsContext3D* context) {
+ static scoped_ptr<Query> Create(blink::WebGraphicsContext3D* context) {
return make_scoped_ptr(new Query(context));
}
@@ -74,9 +74,9 @@ class CC_EXPORT TextureUploader {
}
private:
- explicit Query(WebKit::WebGraphicsContext3D* context);
+ explicit Query(blink::WebGraphicsContext3D* context);
- WebKit::WebGraphicsContext3D* context_;
+ blink::WebGraphicsContext3D* context_;
unsigned query_id_;
unsigned value_;
bool has_value_;
@@ -85,7 +85,7 @@ class CC_EXPORT TextureUploader {
DISALLOW_COPY_AND_ASSIGN(Query);
};
- TextureUploader(WebKit::WebGraphicsContext3D* context,
+ TextureUploader(blink::WebGraphicsContext3D* context,
bool use_map_tex_sub_image,
bool use_shallow_flush);
@@ -105,7 +105,7 @@ class CC_EXPORT TextureUploader {
ResourceFormat format);
void UploadWithTexImageETC1(const uint8* image, gfx::Size size);
- WebKit::WebGraphicsContext3D* context_;
+ blink::WebGraphicsContext3D* context_;
ScopedPtrDeque<Query> pending_queries_;
ScopedPtrDeque<Query> available_queries_;
std::multiset<double> textures_per_second_history_;
« no previous file with comments | « cc/resources/video_resource_updater.cc ('k') | cc/scheduler/texture_uploader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698