| Index: content/browser/renderer_host/render_widget_host_view_android.cc
|
| diff --git a/content/browser/renderer_host/render_widget_host_view_android.cc b/content/browser/renderer_host/render_widget_host_view_android.cc
|
| index 0a02371dbabe3a326bde2fe762bc2e9c24647ab0..56a8f6eaff65a7190b084f5e66c3ab72159d984b 100644
|
| --- a/content/browser/renderer_host/render_widget_host_view_android.cc
|
| +++ b/content/browser/renderer_host/render_widget_host_view_android.cc
|
| @@ -96,15 +96,15 @@ namespace content {
|
| namespace {
|
|
|
| void SatisfyCallback(cc::SurfaceManager* manager,
|
| - cc::SurfaceSequence sequence) {
|
| + const cc::SurfaceSequence& sequence) {
|
| std::vector<uint32_t> sequences;
|
| sequences.push_back(sequence.sequence);
|
| manager->DidSatisfySequences(sequence.id_namespace, &sequences);
|
| }
|
|
|
| void RequireCallback(cc::SurfaceManager* manager,
|
| - cc::SurfaceId id,
|
| - cc::SurfaceSequence sequence) {
|
| + const cc::SurfaceId& id,
|
| + const cc::SurfaceSequence& sequence) {
|
| cc::Surface* surface = manager->GetSurfaceForId(id);
|
| if (!surface) {
|
| LOG(ERROR) << "Attempting to require callback on nonexistent surface";
|
|
|