// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/ui/webui/help/version_updater.h" #include <memory> #include <string> #include "chrome/browser/upgrade_detector/upgrade_detector.h" namespace { // Bare bones implementation just checks if a new version is ready. class VersionUpdaterBasic : public VersionUpdater { … }; } // namespace std::unique_ptr<VersionUpdater> VersionUpdater::Create( content::WebContents* web_contents) { … }