root/sync/internal_api/public/sync_encryption_handler.cc

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. SensitiveTypes

// Copyright (c) 2012 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.

#include "sync/internal_api/public/sync_encryption_handler.h"

namespace syncer {

SyncEncryptionHandler::Observer::Observer() {}
SyncEncryptionHandler::Observer::~Observer() {}

SyncEncryptionHandler::SyncEncryptionHandler() {}
SyncEncryptionHandler::~SyncEncryptionHandler() {}

// Static.
ModelTypeSet SyncEncryptionHandler::SensitiveTypes() {
  // It has its own encryption scheme, but we include it anyway.
  ModelTypeSet types;
  types.Put(PASSWORDS);
  return types;
}

}  // namespace syncer

/* [<][>][^][v][top][bottom][index][help] */