Home | History | Annotate | Download | only in common
      1 // Copyright (c) 2011 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.
      4 
      5 #ifndef CHROME_COMMON_INSTANT_TYPES_H_
      6 #define CHROME_COMMON_INSTANT_TYPES_H_
      7 #pragma once
      8 
      9 // Enum describing the ways instant suggest text can be completed.
     10 enum InstantCompleteBehavior {
     11   // Complete the suggestion now.
     12   INSTANT_COMPLETE_NOW,
     13 
     14   // Complete the suggestion after a delay.
     15   INSTANT_COMPLETE_DELAYED,
     16 
     17   // Never complete the suggestion.
     18   INSTANT_COMPLETE_NEVER
     19 };
     20 
     21 #endif  // CHROME_COMMON_INSTANT_TYPES_H_
     22