blob: 1398c67c0b8dfc7311b3b7ec65c2ab9a4ea57ba6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_QUERY_TILES_TILE_H_
#define COMPONENTS_QUERY_TILES_TILE_H_
#include <memory>
#include <string>
#include <vector>
#include "base/time/time.h"
#include "url/gurl.h"
namespace query_tiles {
// Metadata of a tile image.
struct ImageMetadata {
ImageMetadata();
explicit ImageMetadata(const GURL& url);
~ImageMetadata();
ImageMetadata(const ImageMetadata& other);
bool operator==(const ImageMetadata& other) const;
// URL of the image.
GURL url;
};
// Represents the in memory structure of Tile.
struct Tile {
Tile();
~Tile();
bool operator==(const Tile& other) const;
bool operator!=(const Tile& other) const;
Tile(const Tile& other);
Tile(Tile&& other) noexcept;
Tile& operator=(const Tile& other);
Tile& operator=(Tile&& other) noexcept;
// Unique Id for each entry.
std::string id;
// String of query that send to the search engine.
std::string query_text;
// String of the text that displays in UI.
std::string display_text;
// Text for accessibility purposes, in pair with |display_text|.
std::string accessibility_text;
// A list of images's matadatas.
std::vector<ImageMetadata> image_metadatas;
// A list of children of this tile.
std::vector<std::unique_ptr<Tile>> sub_tiles;
// Additional params for search query.
std::vector<std::string> search_params;
};
} // namespace query_tiles
#endif // COMPONENTS_QUERY_TILES_TILE_H_
|