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

Unified Diff: net/tools/flip_server/spdy_interface.h

Issue 8525020: Cleanup: Remove unneeded forward declararations in net. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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
« no previous file with comments | « net/spdy/spdy_session_pool.h ('k') | net/url_request/url_request.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/flip_server/spdy_interface.h
===================================================================
--- net/tools/flip_server/spdy_interface.h (revision 109589)
+++ net/tools/flip_server/spdy_interface.h (working copy)
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef NET_TOOLS_FLIP_SERVER_SPDY_INTERFACE_
-#define NET_TOOLS_FLIP_SERVER_SPDY_INTERFACE_
+#ifndef NET_TOOLS_FLIP_SERVER_SPDY_INTERFACE_H_
+#define NET_TOOLS_FLIP_SERVER_SPDY_INTERFACE_H_
#include <map>
#include <string>
@@ -19,7 +19,6 @@
namespace net {
-class BalsaFrame;
class FlipAcceptor;
class MemoryCache;
@@ -57,8 +56,8 @@
SMInterface* FindOrMakeNewSMConnectionInterface(std::string server_ip,
std::string server_port);
int SpdyHandleNewStream(const spdy::SpdyControlFrame* frame,
- std::string &http_data,
- bool *is_https_scheme);
+ std::string& http_data,
+ bool* is_https_scheme);
// SpdyFramerVisitor interface.
virtual void OnControl(const spdy::SpdyControlFrame* frame);
@@ -82,7 +81,7 @@
// SMInterface's Cleanup is currently only called by SMConnection after a
// protocol message as been fully read. Spdy's SMInterface does not need
// to do any cleanup at this time.
- // TODO (klindsay) This method is probably not being used properly and
+ // TODO(klindsay) This method is probably not being used properly and
// some logic review and method renaming is probably in order.
virtual void Cleanup() {}
// Send a settings frame
@@ -143,5 +142,4 @@
} // namespace net
-#endif // NET_TOOLS_FLIP_SERVER_SPDY_INTERFACE_
-
+#endif // NET_TOOLS_FLIP_SERVER_SPDY_INTERFACE_H_
« no previous file with comments | « net/spdy/spdy_session_pool.h ('k') | net/url_request/url_request.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698