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

Unified Diff: chrome/browser/extensions/api/socket/socket.h

Issue 10777003: Refactor APIResourceController to ProfileKeyedService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge/antony/fix build. Created 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/api/socket/socket.h
diff --git a/chrome/browser/extensions/api/socket/socket.h b/chrome/browser/extensions/api/socket/socket.h
index 3979f2ca4f79bb6152ef99e6e5fa72abc8f4a99d..663a944e3636d2821e675536a7dfea97be38808c 100644
--- a/chrome/browser/extensions/api/socket/socket.h
+++ b/chrome/browser/extensions/api/socket/socket.h
@@ -32,7 +32,7 @@ typedef base::Callback<
// A Socket wraps a low-level socket and includes housekeeping information that
// we need to manage it in the context of an extension.
-class Socket : public APIResource {
+class Socket : public ApiResource {
public:
virtual ~Socket();
virtual void Connect(const std::string& address,
@@ -74,7 +74,7 @@ class Socket : public APIResource {
int* port);
protected:
- explicit Socket(APIResourceEventNotifier* event_notifier);
+ explicit Socket(ApiResourceEventNotifier* event_notifier);
void WriteData();
virtual int WriteImpl(net::IOBuffer* io_buffer,
« no previous file with comments | « chrome/browser/extensions/api/serial/serial_connection.cc ('k') | chrome/browser/extensions/api/socket/socket.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698