blob: 4dedf3f4ff72b6dd633e0d10e64217378bafeb4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright 2011 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/base/models/tree_model.h"
#include "base/notreached.h"
namespace ui {
void TreeModel::SetTitle(TreeModelNode* node, const std::u16string& title) {
NOTREACHED();
}
absl::optional<size_t> TreeModel::GetIconIndex(TreeModelNode* node) {
return absl::nullopt;
}
} // namespace ui
|