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

Unified Diff: cc/transferable_resource.cc

Issue 11316128: Send compositor frame IPC with metadata. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix compile errors on mac/win Created 8 years 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/transferable_resource.h ('k') | content/browser/android/content_startup_flags.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/transferable_resource.cc
diff --git a/cc/transferable_resource.cc b/cc/transferable_resource.cc
index 39eba20cda368c00c40f93d62df1275cd98cbf66..9d5eeb460aa4b9b3cc880c37c7e9d2b3318e541c 100644
--- a/cc/transferable_resource.cc
+++ b/cc/transferable_resource.cc
@@ -19,7 +19,7 @@ bool Mailbox::isZero() const {
return true;
}
-void Mailbox::setName(const GLbyte* n) {
+void Mailbox::setName(const int8* n) {
DCHECK(isZero() || !memcmp(name, n, sizeof(name)));
memcpy(name, n, sizeof(name));
}
« no previous file with comments | « cc/transferable_resource.h ('k') | content/browser/android/content_startup_flags.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698