Home | History | Annotate | Download | only in sync
      1 // Copyright 2013 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 // This file intentionally does not have header guards, it's included
      6 // inside a macro to generate enum values.
      7 
      8 // This file contains the list of sync ModelTypes that Android can register for
      9 // invalidations for.
     10 
     11 DEFINE_MODEL_TYPE_SELECTION(AUTOFILL, 1<<0)
     12 
     13 DEFINE_MODEL_TYPE_SELECTION(BOOKMARK, 1<<1)
     14 
     15 DEFINE_MODEL_TYPE_SELECTION(PASSWORD, 1<<2)
     16 
     17 DEFINE_MODEL_TYPE_SELECTION(SESSION, 1<<3)
     18 
     19 DEFINE_MODEL_TYPE_SELECTION(TYPED_URL, 1<<4)
     20 
     21 DEFINE_MODEL_TYPE_SELECTION(AUTOFILL_PROFILE, 1<<5)
     22 
     23 DEFINE_MODEL_TYPE_SELECTION(HISTORY_DELETE_DIRECTIVE, 1<<6)
     24 
     25 DEFINE_MODEL_TYPE_SELECTION(PROXY_TABS, 1<<7)
     26 
     27 DEFINE_MODEL_TYPE_SELECTION(FAVICON_IMAGE, 1<<8)
     28 
     29 DEFINE_MODEL_TYPE_SELECTION(FAVICON_TRACKING, 1<<9)
     30 
     31 DEFINE_MODEL_TYPE_SELECTION(NIGORI, 1<<10)
     32 
     33 DEFINE_MODEL_TYPE_SELECTION(DEVICE_INFO, 1<<11)
     34 
     35 DEFINE_MODEL_TYPE_SELECTION(EXPERIMENTS, 1<<12)
     36