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

Unified Diff: apps/moterm/moterm_app.h

Issue 1556683004: Port Moterm to Mozart. (Closed) Base URL: git@github.com:domokit/mojo.git@moz-16
Patch Set: address feedback Created 4 years, 11 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: apps/moterm/moterm_app.h
diff --git a/examples/ui/tile/tile_app.h b/apps/moterm/moterm_app.h
similarity index 62%
copy from examples/ui/tile/tile_app.h
copy to apps/moterm/moterm_app.h
index 1b4d61996c11b62e58d2b11b9b47cb48522a44bf..c49f8e5d552a3385610fa6adf74f4a3402f40332 100644
--- a/examples/ui/tile/tile_app.h
+++ b/apps/moterm/moterm_app.h
@@ -2,17 +2,15 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef EXAMPLES_UI_TILE_TILE_APP_H_
-#define EXAMPLES_UI_TILE_TILE_APP_H_
+#ifndef APPS_MOTERM_MOTERM_APP_H_
+#define APPS_MOTERM_MOTERM_APP_H_
#include "mojo/ui/view_provider_app.h"
-namespace examples {
-
-class TileApp : public mojo::ui::ViewProviderApp {
+class MotermApp : public mojo::ui::ViewProviderApp {
public:
- TileApp();
- ~TileApp() override;
+ MotermApp();
+ ~MotermApp() override;
bool CreateView(
const std::string& connection_url,
@@ -21,9 +19,7 @@ class TileApp : public mojo::ui::ViewProviderApp {
const mojo::ui::ViewProvider::CreateViewCallback& callback) override;
private:
- DISALLOW_COPY_AND_ASSIGN(TileApp);
+ DISALLOW_COPY_AND_ASSIGN(MotermApp);
viettrungluu 2016/01/26 18:33:35 You should include "base/macros.h" for this macro.
jeffbrown 2016/01/26 23:10:44 Done.
};
-} // namespace examples
-
-#endif // EXAMPLES_UI_TILE_TILE_APP_H_
+#endif // APPS_MOTERM_MOTERM_APP_H_

Powered by Google App Engine
This is Rietveld 408576698