| Index: mojo/examples/launcher/launcher.cc
|
| diff --git a/mojo/examples/launcher/launcher.cc b/mojo/examples/launcher/launcher.cc
|
| index 400689f2c57f6b1b5b48fae69f5201b8d43123e2..3192fe65bddeeb5a1d9162a1a79b48b7e34b7300 100644
|
| --- a/mojo/examples/launcher/launcher.cc
|
| +++ b/mojo/examples/launcher/launcher.cc
|
| @@ -15,7 +15,6 @@
|
| #include "mojo/aura/screen_mojo.h"
|
| #include "mojo/aura/window_tree_host_mojo.h"
|
| #include "mojo/examples/launcher/launcher.mojom.h"
|
| -#include "mojo/public/cpp/bindings/allocation_scope.h"
|
| #include "mojo/public/cpp/gles2/gles2.h"
|
| #include "mojo/public/cpp/shell/application.h"
|
| #include "mojo/public/cpp/system/core.h"
|
| @@ -221,8 +220,7 @@ class LauncherImpl : public InterfaceImpl<Launcher>,
|
|
|
| // Overridden from URLReceiver:
|
| virtual void OnURLEntered(const std::string& url_text) OVERRIDE {
|
| - AllocationScope scope;
|
| - client()->OnURLEntered(url_text);
|
| + client()->OnURLEntered(String::From(url_text));
|
| }
|
|
|
| void HostContextCreated() {
|
|
|