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

Unified Diff: gpu/command_buffer/common/command_buffer.h

Issue 558054: Renamed ParseError -> Error, parse_error -> error, kParseNoError -> kNoError,... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 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
« no previous file with comments | « gpu/command_buffer/client/fenced_allocator_test.cc ('k') | gpu/command_buffer/common/command_buffer_mock.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/common/command_buffer.h
===================================================================
--- gpu/command_buffer/common/command_buffer.h (revision 37750)
+++ gpu/command_buffer/common/command_buffer.h (working copy)
@@ -20,7 +20,7 @@
get_offset(0),
put_offset(0),
token(-1),
- error(parse_error::kParseNoError) {
+ error(error::kNoError) {
}
// Size of the command buffer in command buffer entries.
@@ -40,7 +40,7 @@
int32 token;
// Error status.
- parse_error::ParseError error;
+ error::Error error;
};
CommandBuffer() {
@@ -81,7 +81,7 @@
virtual void SetToken(int32 token) = 0;
// Allows the reader to set the current parse error.
- virtual void SetParseError(parse_error::ParseError) = 0;
+ virtual void SetParseError(error::Error) = 0;
private:
DISALLOW_COPY_AND_ASSIGN(CommandBuffer);
« no previous file with comments | « gpu/command_buffer/client/fenced_allocator_test.cc ('k') | gpu/command_buffer/common/command_buffer_mock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698