Chromium Code Reviews| 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_ |