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

Side by Side Diff: chrome/browser/automation/extension_port_container.h

Issue 155905: Separates ipc code from common (http://crbug.com/16829) (Closed)
Patch Set: Fixes reference to 'common_message_traits' it's actually 'common_param_traits' Created 11 years, 5 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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 #ifndef CHROME_BROWSER_EXTENSION_PORT_CONTAINER_H_ 5 #ifndef CHROME_BROWSER_EXTENSION_PORT_CONTAINER_H_
6 #define CHROME_BROWSER_EXTENSION_PORT_CONTAINER_H_ 6 #define CHROME_BROWSER_EXTENSION_PORT_CONTAINER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/ref_counted.h" 11 #include "base/ref_counted.h"
12 #include "chrome/common/ipc_message.h" 12 #include "ipc/ipc_message.h"
13 13
14 class AutomationProvider; 14 class AutomationProvider;
15 class ExtensionMessageService; 15 class ExtensionMessageService;
16 class ListValue; 16 class ListValue;
17 class MessageLoop; 17 class MessageLoop;
18 class RenderViewHost; 18 class RenderViewHost;
19 19
20 // This class represents an external port to an extension, opened 20 // This class represents an external port to an extension, opened
21 // through the automation interface. 21 // through the automation interface.
22 class ExtensionPortContainer : public IPC::Message::Sender { 22 class ExtensionPortContainer : public IPC::Message::Sender {
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 71
72 // Our assigned port id. 72 // Our assigned port id.
73 int port_id_; 73 int port_id_;
74 // Handle to our associated tab. 74 // Handle to our associated tab.
75 int tab_handle_; 75 int tab_handle_;
76 76
77 DISALLOW_COPY_AND_ASSIGN(ExtensionPortContainer); 77 DISALLOW_COPY_AND_ASSIGN(ExtensionPortContainer);
78 }; 78 };
79 79
80 #endif // CHROME_BROWSER_EXTENSION_PORT_CONTAINER_H_ 80 #endif // CHROME_BROWSER_EXTENSION_PORT_CONTAINER_H_
OLDNEW
« no previous file with comments | « chrome/browser/automation/automation_resource_tracker.h ('k') | chrome/browser/extensions/extension_message_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698