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

Side by Side Diff: chrome/renderer/extensions/tabs_custom_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/tabs_custom_bindings.h" 5 #include "chrome/renderer/extensions/tabs_custom_bindings.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "chrome/common/extensions/extension_messages.h"
11 #include "content/public/renderer/render_view.h" 10 #include "content/public/renderer/render_view.h"
11 #include "extensions/common/extension_messages.h"
12 #include "grit/renderer_resources.h" 12 #include "grit/renderer_resources.h"
13 #include "v8/include/v8.h" 13 #include "v8/include/v8.h"
14 14
15 namespace extensions { 15 namespace extensions {
16 16
17 TabsCustomBindings::TabsCustomBindings(Dispatcher* dispatcher, 17 TabsCustomBindings::TabsCustomBindings(Dispatcher* dispatcher,
18 ChromeV8Context* context) 18 ChromeV8Context* context)
19 : ChromeV8Extension(dispatcher, context) { 19 : ChromeV8Extension(dispatcher, context) {
20 RouteFunction("OpenChannelToTab", 20 RouteFunction("OpenChannelToTab",
21 base::Bind(&TabsCustomBindings::OpenChannelToTab, 21 base::Bind(&TabsCustomBindings::OpenChannelToTab,
(...skipping 16 matching lines...) Expand all
38 int port_id = -1; 38 int port_id = -1;
39 renderview->Send(new ExtensionHostMsg_OpenChannelToTab( 39 renderview->Send(new ExtensionHostMsg_OpenChannelToTab(
40 renderview->GetRoutingID(), tab_id, extension_id, channel_name, 40 renderview->GetRoutingID(), tab_id, extension_id, channel_name,
41 &port_id)); 41 &port_id));
42 args.GetReturnValue().Set(static_cast<int32_t>(port_id)); 42 args.GetReturnValue().Set(static_cast<int32_t>(port_id));
43 return; 43 return;
44 } 44 }
45 } 45 }
46 46
47 } // namespace extensions 47 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/renderer/extensions/runtime_custom_bindings.cc ('k') | chrome/renderer/extensions/user_script_scheduler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698