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

Side by Side Diff: chrome/browser/extensions/message_handler.cc

Issue 14208019: Change MessageService to use ProfileKeyedAPI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Typo fix Created 7 years, 7 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
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/browser/extensions/message_handler.h" 5 #include "chrome/browser/extensions/message_handler.h"
6 6
7 #include "chrome/browser/extensions/api/messaging/message_service.h" 7 #include "chrome/browser/extensions/api/messaging/message_service.h"
8 #include "chrome/browser/extensions/extension_system.h" 8 #include "chrome/browser/extensions/extension_system.h"
9 #include "chrome/browser/profiles/profile.h" 9 #include "chrome/browser/profiles/profile.h"
10 #include "chrome/common/extensions/extension_messages.h" 10 #include "chrome/common/extensions/extension_messages.h"
(...skipping 28 matching lines...) Expand all
39 WebContents* web_contents = 39 WebContents* web_contents =
40 WebContents::FromRenderViewHost(render_view_host()); 40 WebContents::FromRenderViewHost(render_view_host());
41 Send(new ExtensionMsg_NotifyRenderViewType( 41 Send(new ExtensionMsg_NotifyRenderViewType(
42 routing_id(), extensions::GetViewType(web_contents))); 42 routing_id(), extensions::GetViewType(web_contents)));
43 } 43 }
44 44
45 void MessageHandler::OnPostMessage(int port_id, 45 void MessageHandler::OnPostMessage(int port_id,
46 const std::string& message) { 46 const std::string& message) {
47 Profile* profile = Profile::FromBrowserContext( 47 Profile* profile = Profile::FromBrowserContext(
48 render_view_host()->GetProcess()->GetBrowserContext()); 48 render_view_host()->GetProcess()->GetBrowserContext());
49 MessageService* message_service = 49 MessageService* message_service = MessageService::Get(profile);
50 ExtensionSystem::Get(profile)->message_service();
51 if (message_service) { 50 if (message_service) {
52 message_service->PostMessage(port_id, message); 51 message_service->PostMessage(port_id, message);
53 } 52 }
54 } 53 }
55 54
56 } // namespace extensions 55 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_system.cc ('k') | chrome/browser/extensions/test_extension_system.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698