| Index: android_webview/lib/main/aw_main_delegate.cc
|
| diff --git a/android_webview/lib/main/aw_main_delegate.cc b/android_webview/lib/main/aw_main_delegate.cc
|
| index aeef23c75e22b80f8c3061cbd682abe4126e40bf..691552b16313a1e3e636bac81de3f8dee4831ddb 100644
|
| --- a/android_webview/lib/main/aw_main_delegate.cc
|
| +++ b/android_webview/lib/main/aw_main_delegate.cc
|
| @@ -20,7 +20,7 @@
|
| #include "content/public/browser/browser_main_runner.h"
|
| #include "content/public/browser/browser_thread.h"
|
| #include "content/public/common/content_switches.h"
|
| -#include "gpu/command_buffer/client/gl_in_process_context.h"
|
| +#include "gpu/command_buffer/service/in_process_command_buffer.h"
|
| #include "webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h"
|
|
|
| namespace android_webview {
|
| @@ -43,7 +43,7 @@ AwMainDelegate::~AwMainDelegate() {
|
| bool AwMainDelegate::BasicStartupComplete(int* exit_code) {
|
| content::SetContentClient(&content_client_);
|
|
|
| - gpu::GLInProcessContext::EnableVirtualizedContext();
|
| + gpu::InProcessCommandBuffer::EnableVirtualizedContext();
|
|
|
| CommandLine* cl = CommandLine::ForCurrentProcess();
|
| cl->AppendSwitch(switches::kEnableBeginFrameScheduling);
|
|
|