Index: extensions/shell/renderer/shell_custom_bindings.cc |
diff --git a/apps/shell/renderer/shell_custom_bindings.cc b/extensions/shell/renderer/shell_custom_bindings.cc |
similarity index 88% |
rename from apps/shell/renderer/shell_custom_bindings.cc |
rename to extensions/shell/renderer/shell_custom_bindings.cc |
index c4101b6ba0886dbe852fda02367bd54a8b703e95..40965cacef84d748b4746fe657c6f82f53384054 100644 |
--- a/apps/shell/renderer/shell_custom_bindings.cc |
+++ b/extensions/shell/renderer/shell_custom_bindings.cc |
@@ -2,7 +2,7 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "apps/shell/renderer/shell_custom_bindings.h" |
+#include "extensions/shell/renderer/shell_custom_bindings.h" |
#include "content/public/renderer/render_thread.h" |
#include "content/public/renderer/render_view.h" |
@@ -14,10 +14,10 @@ |
#include "third_party/WebKit/public/web/WebView.h" |
#include "v8/include/v8.h" |
-namespace apps { |
+namespace extensions { |
-ShellCustomBindings::ShellCustomBindings(extensions::ScriptContext* context) |
- : extensions::ObjectBackedNativeHandler(context) { |
+ShellCustomBindings::ShellCustomBindings(ScriptContext* context) |
+ : ObjectBackedNativeHandler(context) { |
RouteFunction( |
"GetView", |
base::Bind(&ShellCustomBindings::GetView, base::Unretained(this))); |
@@ -54,4 +54,4 @@ void ShellCustomBindings::GetView( |
args.GetReturnValue().Set(window); |
} |
-} // namespace apps |
+} // namespace extensions |