// 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. #include "chrome/browser/instant/instant_opt_in.h" #include "chrome/browser/profile.h" namespace browser { bool ShouldShowInstantOptIn(Profile* profile) { // TODO(sky): implement me. return false; } void UserPickedInstantOptIn(Profile* profile, bool opt_in) { // TODO(sky): implement me. } } // namespace browser