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

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

Issue 234413005: Move most of ChromeV8Context to a base ScriptContext (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: factor feature_channel out of module_system Created 6 years, 8 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/send_request_natives.h" 5 #include "chrome/renderer/extensions/send_request_natives.h"
6 6
7 #include "base/json/json_reader.h" 7 #include "base/json/json_reader.h"
8 #include "content/public/renderer/v8_value_converter.h" 8 #include "content/public/renderer/v8_value_converter.h"
9 #include "chrome/renderer/extensions/request_sender.h" 9 #include "extensions/renderer/request_sender.h"
10 10
11 using content::V8ValueConverter; 11 using content::V8ValueConverter;
12 12
13 namespace extensions { 13 namespace extensions {
14 14
15 SendRequestNatives::SendRequestNatives(Dispatcher* dispatcher, 15 SendRequestNatives::SendRequestNatives(Dispatcher* dispatcher,
16 RequestSender* request_sender, 16 RequestSender* request_sender,
17 ChromeV8Context* context) 17 ChromeV8Context* context)
18 : ChromeV8Extension(dispatcher, context), 18 : ChromeV8Extension(dispatcher, context),
19 request_sender_(request_sender) { 19 request_sender_(request_sender) {
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 68
69 void SendRequestNatives::GetGlobal( 69 void SendRequestNatives::GetGlobal(
70 const v8::FunctionCallbackInfo<v8::Value>& args) { 70 const v8::FunctionCallbackInfo<v8::Value>& args) {
71 CHECK_EQ(1, args.Length()); 71 CHECK_EQ(1, args.Length());
72 CHECK(args[0]->IsObject()); 72 CHECK(args[0]->IsObject());
73 args.GetReturnValue().Set( 73 args.GetReturnValue().Set(
74 v8::Handle<v8::Object>::Cast(args[0])->CreationContext()->Global()); 74 v8::Handle<v8::Object>::Cast(args[0])->CreationContext()->Global());
75 } 75 }
76 76
77 } // namespace extensions 77 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/renderer/extensions/safe_builtins.cc ('k') | chrome/renderer/extensions/set_icon_natives.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698