summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/searchbox.h
blob: d09c73abf4ed03cb0abd1e45d0524d717947d0d5 (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
// Copyright (c) 2010 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 CHROME_RENDERER_SEARCHBOX_H_
#define CHROME_RENDERER_SEARCHBOX_H_
#pragma once

#include "base/string16.h"

struct SearchBox {
  SearchBox();
  ~SearchBox();

  string16 value;
  bool verbatim;
  uint32 selection_start;
  uint32 selection_end;
  uint32 x;
  uint32 y;
  uint32 width;
  uint32 height;
};

#endif  // CHROME_RENDERER_SEARCHBOX_H_