| Index: cc/ipc/surface_sequence_struct_traits.h
|
| diff --git a/cc/ipc/surface_sequence_struct_traits.h b/cc/ipc/surface_sequence_struct_traits.h
|
| index 2635b4df1bdf9724fba03094ea6c0f59dc4c1bf4..db47458f96f8e7a097430584d588413639b5ec31 100644
|
| --- a/cc/ipc/surface_sequence_struct_traits.h
|
| +++ b/cc/ipc/surface_sequence_struct_traits.h
|
| @@ -14,8 +14,8 @@ namespace mojo {
|
| // .mojom-blink.h respectively.
|
| template <typename T>
|
| struct StructTraits<T, cc::SurfaceSequence> {
|
| - static uint32_t id_namespace(const cc::SurfaceSequence& id) {
|
| - return id.id_namespace;
|
| + static uint32_t client_id(const cc::SurfaceSequence& id) {
|
| + return id.client_id;
|
| }
|
|
|
| static uint32_t sequence(const cc::SurfaceSequence& id) {
|
| @@ -23,7 +23,7 @@ struct StructTraits<T, cc::SurfaceSequence> {
|
| }
|
|
|
| static bool Read(typename T::DataView data, cc::SurfaceSequence* out) {
|
| - *out = cc::SurfaceSequence(data.id_namespace(), data.sequence());
|
| + *out = cc::SurfaceSequence(data.client_id(), data.sequence());
|
| return true;
|
| }
|
| };
|
|
|