summaryrefslogtreecommitdiffstats
path: root/chrome/common/instant_types.h
blob: cad7cbf0b9da56bdd666c237e8f5a31a0ae2843c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (c) 2011 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_COMMON_INSTANT_TYPES_H_
#define CHROME_COMMON_INSTANT_TYPES_H_
#pragma once

// Enum describing the ways instant suggest text can be completed.
enum InstantCompleteBehavior {
  // Complete the suggestion now.
  INSTANT_COMPLETE_NOW,

  // Complete the suggestion after a delay.
  INSTANT_COMPLETE_DELAYED,

  // Never complete the suggestion.
  INSTANT_COMPLETE_NEVER
};

#endif  // CHROME_COMMON_INSTANT_TYPES_H_