| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef UI_OAK_OAK_DETAILS_MODEL_H_ | |
| 6 #define UI_OAK_OAK_DETAILS_MODEL_H_ | |
| 7 | |
| 8 #include "ui/base/models/table_model.h" | |
| 9 | |
| 10 namespace aura { | |
| 11 class Window; | |
| 12 } | |
| 13 | |
| 14 namespace oak { | |
| 15 namespace internal { | |
| 16 | |
| 17 class OakDetailsModel : public ui::TableModel { | |
| 18 public: | |
| 19 virtual ~OakDetailsModel() {} | |
| 20 | |
| 21 virtual void SetValue(aura::Window* window) = 0; | |
| 22 | |
| 23 protected: | |
| 24 OakDetailsModel() {} | |
| 25 | |
| 26 private: | |
| 27 DISALLOW_COPY_AND_ASSIGN(OakDetailsModel); | |
| 28 }; | |
| 29 | |
| 30 } // namespace internal | |
| 31 } // namespace oak | |
| 32 | |
| 33 #endif // UI_OAK_OAK_DETAILS_MODEL_H_ | |
| OLD | NEW |