[Android] Enable the autofill dialog flag.
[chromium-blink-merge.git] / ui / oak / oak_details_model.h
blobeb558aa09560386aae18bfe91d94a8d2c9566747
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.
5 #ifndef UI_OAK_OAK_DETAILS_MODEL_H_
6 #define UI_OAK_OAK_DETAILS_MODEL_H_
8 #include "ui/base/models/table_model.h"
10 namespace aura {
11 class Window;
14 namespace oak {
15 namespace internal {
17 class OakDetailsModel : public ui::TableModel {
18 public:
19 virtual ~OakDetailsModel() {}
21 virtual void SetValue(aura::Window* window) = 0;
23 protected:
24 OakDetailsModel() {}
26 private:
27 DISALLOW_COPY_AND_ASSIGN(OakDetailsModel);
30 } // namespace internal
31 } // namespace oak
33 #endif // UI_OAK_OAK_DETAILS_MODEL_H_