OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/renderer/extensions/app_bindings.h" | 5 #include "chrome/renderer/extensions/app_bindings.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/string16.h" | 8 #include "base/strings/string16.h" |
9 #include "base/string_util.h" | 9 #include "base/strings/string_util.h" |
10 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
11 #include "base/values.h" | 11 #include "base/values.h" |
12 #include "chrome/common/chrome_switches.h" | 12 #include "chrome/common/chrome_switches.h" |
13 #include "chrome/common/extensions/extension_messages.h" | 13 #include "chrome/common/extensions/extension_messages.h" |
14 #include "chrome/common/extensions/extension_set.h" | 14 #include "chrome/common/extensions/extension_set.h" |
15 #include "chrome/common/extensions/manifest.h" | 15 #include "chrome/common/extensions/manifest.h" |
16 #include "chrome/renderer/extensions/chrome_v8_context.h" | 16 #include "chrome/renderer/extensions/chrome_v8_context.h" |
17 #include "chrome/renderer/extensions/console.h" | 17 #include "chrome/renderer/extensions/console.h" |
18 #include "chrome/renderer/extensions/dispatcher.h" | 18 #include "chrome/renderer/extensions/dispatcher.h" |
19 #include "chrome/renderer/extensions/extension_helper.h" | 19 #include "chrome/renderer/extensions/extension_helper.h" |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 v8::Context::Scope context_scope(context()->v8_context()); | 202 v8::Context::Scope context_scope(context()->v8_context()); |
203 v8::Handle<v8::Value> argv[] = { | 203 v8::Handle<v8::Value> argv[] = { |
204 v8::String::New(state.c_str()), | 204 v8::String::New(state.c_str()), |
205 v8::Integer::New(callback_id) | 205 v8::Integer::New(callback_id) |
206 }; | 206 }; |
207 context()->module_system()->CallModuleMethod( | 207 context()->module_system()->CallModuleMethod( |
208 "app", "onInstallStateResponse", arraysize(argv), argv); | 208 "app", "onInstallStateResponse", arraysize(argv), argv); |
209 } | 209 } |
210 | 210 |
211 } // namespace extensions | 211 } // namespace extensions |
OLD | NEW |