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

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

Issue 240603003: Remove ChromeV8Extension & most of ChromeV8Context (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleanup 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/chrome_v8_extension_handler.h" 5 #include "chrome/renderer/extensions/chrome_v8_extension_handler.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "chrome/renderer/extensions/chrome_v8_context.h"
9 #include "content/public/renderer/render_thread.h" 8 #include "content/public/renderer/render_thread.h"
9 #include "extensions/renderer/script_context.h"
10 10
11 using content::RenderThread; 11 using content::RenderThread;
12 12
13 namespace extensions { 13 namespace extensions {
14 14
15 ChromeV8ExtensionHandler::ChromeV8ExtensionHandler(ChromeV8Context* context) 15 ChromeV8ExtensionHandler::ChromeV8ExtensionHandler(ScriptContext* context)
16 : context_(context), routing_id_(MSG_ROUTING_NONE) { 16 : context_(context), routing_id_(MSG_ROUTING_NONE) {
17 } 17 }
18 18
19 ChromeV8ExtensionHandler::~ChromeV8ExtensionHandler() { 19 ChromeV8ExtensionHandler::~ChromeV8ExtensionHandler() {
20 if (routing_id_ != MSG_ROUTING_NONE) 20 if (routing_id_ != MSG_ROUTING_NONE)
21 RenderThread::Get()->RemoveRoute(routing_id_); 21 RenderThread::Get()->RemoveRoute(routing_id_);
22 } 22 }
23 23
24 int ChromeV8ExtensionHandler::GetRoutingID() { 24 int ChromeV8ExtensionHandler::GetRoutingID() {
25 if (routing_id_ == MSG_ROUTING_NONE) { 25 if (routing_id_ == MSG_ROUTING_NONE) {
26 routing_id_ = RenderThread::Get()->GenerateRoutingID(); 26 routing_id_ = RenderThread::Get()->GenerateRoutingID();
27 RenderThread::Get()->AddRoute(routing_id_, this); 27 RenderThread::Get()->AddRoute(routing_id_, this);
28 } 28 }
29 29
30 return routing_id_; 30 return routing_id_;
31 } 31 }
32 32
33 void ChromeV8ExtensionHandler::Send(IPC::Message* message) { 33 void ChromeV8ExtensionHandler::Send(IPC::Message* message) {
34 RenderThread::Get()->Send(message); 34 RenderThread::Get()->Send(message);
35 } 35 }
36 36
37 } // namespace extensions 37 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698