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

Unified Diff: sky/services/inspector/inspector_frontend_impl.h

Issue 697203007: Correct InspectorFronend to InspectorFrontend (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 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 | « no previous file | sky/services/inspector/inspector_frontend_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/services/inspector/inspector_frontend_impl.h
diff --git a/sky/services/inspector/inspector_frontend_impl.h b/sky/services/inspector/inspector_frontend_impl.h
index 700a72f63085c97f24e40ad28fc09dfbffcc27e6..6521760351bcdf3178de391a1ceb3b18037ceb63 100644
--- a/sky/services/inspector/inspector_frontend_impl.h
+++ b/sky/services/inspector/inspector_frontend_impl.h
@@ -14,11 +14,11 @@
namespace sky {
namespace inspector {
-class InspectorFronendImpl : public mojo::InterfaceImpl<InspectorFrontend>,
+class InspectorFrontendImpl : public mojo::InterfaceImpl<InspectorFrontend>,
public net::HttpServer::Delegate {
public:
- InspectorFronendImpl();
- virtual ~InspectorFronendImpl();
+ InspectorFrontendImpl();
+ virtual ~InspectorFrontendImpl();
private:
// From net::HttpServer::Delegate
@@ -31,7 +31,7 @@ class InspectorFronendImpl : public mojo::InterfaceImpl<InspectorFrontend>,
int connection_id, const std::string& data) override;
virtual void OnClose(int connection_id) override;
- // From InspectorFronend
+ // From InspectorFrontend
virtual void Listen(int32_t port) override;
virtual void SendMessage(const mojo::String&) override;
@@ -44,11 +44,11 @@ class InspectorFronendImpl : public mojo::InterfaceImpl<InspectorFrontend>,
int connection_id_;
scoped_ptr<net::HttpServer> web_server_;
- MOJO_DISALLOW_COPY_AND_ASSIGN(InspectorFronendImpl);
+ MOJO_DISALLOW_COPY_AND_ASSIGN(InspectorFrontendImpl);
};
typedef mojo::InterfaceFactoryImpl<
- InspectorFronendImpl> InspectorFronendFactory;
+ InspectorFrontendImpl> InspectorFrontendFactory;
} // namespace tester
} // namespace sky
« no previous file with comments | « no previous file | sky/services/inspector/inspector_frontend_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698