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

Unified Diff: content/browser/devtools/devtools_http_handler_impl.cc

Issue 12210030: Linux/ChromeOS Chromium style checker cleanup, content/ edition. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 10 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: content/browser/devtools/devtools_http_handler_impl.cc
===================================================================
--- content/browser/devtools/devtools_http_handler_impl.cc (revision 181789)
+++ content/browser/devtools/devtools_http_handler_impl.cc (working copy)
@@ -112,10 +112,10 @@
detach_reason_("target_closed") {
}
- ~DevToolsClientHostImpl() {}
+ virtual ~DevToolsClientHostImpl() {}
// DevToolsClientHost interface
- virtual void InspectedContentsClosing() {
+ virtual void InspectedContentsClosing() OVERRIDE {
if (is_closed_)
return;
is_closed_ = true;
@@ -135,7 +135,7 @@
base::Bind(&net::HttpServer::Close, server_, connection_id_));
}
- virtual void DispatchOnInspectorFrontend(const std::string& data) {
+ virtual void DispatchOnInspectorFrontend(const std::string& data) OVERRIDE {
message_loop_->PostTask(
FROM_HERE,
base::Bind(&net::HttpServer::SendOverWebSocket,
@@ -144,7 +144,7 @@
data));
}
- virtual void ReplacedWithAnotherClient() {
+ virtual void ReplacedWithAnotherClient() OVERRIDE {
detach_reason_ = "replaced_with_devtools";
}
« no previous file with comments | « content/browser/device_orientation/provider_unittest.cc ('k') | content/browser/devtools/devtools_http_handler_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698