| Index: services/js/modules/gl/module.cc
|
| diff --git a/mojo/apps/js/bindings/gl/module.cc b/services/js/modules/gl/module.cc
|
| similarity index 89%
|
| rename from mojo/apps/js/bindings/gl/module.cc
|
| rename to services/js/modules/gl/module.cc
|
| index f34450dc8d8234bbfe553d1ba22dca47190ea312..f0d092247c40166123c1d00d559950a6139481bc 100644
|
| --- a/mojo/apps/js/bindings/gl/module.cc
|
| +++ b/services/js/modules/gl/module.cc
|
| @@ -2,21 +2,21 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "mojo/apps/js/bindings/gl/module.h"
|
| +#include "services/js/modules/gl/module.h"
|
|
|
| #include "base/logging.h"
|
| #include "gin/arguments.h"
|
| #include "gin/object_template_builder.h"
|
| #include "gin/per_isolate_data.h"
|
| #include "gin/wrappable.h"
|
| -#include "mojo/apps/js/bindings/gl/context.h"
|
| #include "mojo/edk/js/handle.h"
|
| +#include "services/js/modules/gl/context.h"
|
|
|
| namespace mojo {
|
| namespace js {
|
| namespace gl {
|
|
|
| -const char* kModuleName = "mojo/apps/js/bindings/gl";
|
| +const char* kModuleName = "services/js/modules/gl";
|
|
|
| namespace {
|
|
|
|
|