Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(470)

Side by Side Diff: chrome/renderer/extensions/app_bindings.cc

Issue 194333002: Move extension_messages.h to extensions/common. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge again Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/strings/string16.h" 8 #include "base/strings/string16.h"
9 #include "base/strings/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_constants.h" 13 #include "chrome/common/extensions/extension_constants.h"
14 #include "chrome/common/extensions/extension_messages.h"
15 #include "chrome/renderer/extensions/chrome_v8_context.h" 14 #include "chrome/renderer/extensions/chrome_v8_context.h"
16 #include "chrome/renderer/extensions/console.h" 15 #include "chrome/renderer/extensions/console.h"
17 #include "chrome/renderer/extensions/dispatcher.h" 16 #include "chrome/renderer/extensions/dispatcher.h"
18 #include "chrome/renderer/extensions/extension_helper.h" 17 #include "chrome/renderer/extensions/extension_helper.h"
19 #include "content/public/renderer/render_view.h" 18 #include "content/public/renderer/render_view.h"
20 #include "content/public/renderer/v8_value_converter.h" 19 #include "content/public/renderer/v8_value_converter.h"
20 #include "extensions/common/extension_messages.h"
21 #include "extensions/common/extension_set.h" 21 #include "extensions/common/extension_set.h"
22 #include "extensions/common/manifest.h" 22 #include "extensions/common/manifest.h"
23 #include "grit/renderer_resources.h" 23 #include "grit/renderer_resources.h"
24 #include "third_party/WebKit/public/web/WebDocument.h" 24 #include "third_party/WebKit/public/web/WebDocument.h"
25 #include "third_party/WebKit/public/web/WebFrame.h" 25 #include "third_party/WebKit/public/web/WebFrame.h"
26 #include "v8/include/v8.h" 26 #include "v8/include/v8.h"
27 27
28 using blink::WebFrame; 28 using blink::WebFrame;
29 using content::V8ValueConverter; 29 using content::V8ValueConverter;
30 30
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 v8::Context::Scope context_scope(context()->v8_context()); 218 v8::Context::Scope context_scope(context()->v8_context());
219 v8::Handle<v8::Value> argv[] = { 219 v8::Handle<v8::Value> argv[] = {
220 v8::String::NewFromUtf8(isolate, state.c_str()), 220 v8::String::NewFromUtf8(isolate, state.c_str()),
221 v8::Integer::New(isolate, callback_id) 221 v8::Integer::New(isolate, callback_id)
222 }; 222 };
223 context()->module_system()->CallModuleMethod( 223 context()->module_system()->CallModuleMethod(
224 "app", "onInstallStateResponse", arraysize(argv), argv); 224 "app", "onInstallStateResponse", arraysize(argv), argv);
225 } 225 }
226 226
227 } // namespace extensions 227 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/renderer/extensions/api_activity_logger.cc ('k') | chrome/renderer/extensions/app_window_custom_bindings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698