OLD | NEW |
| (Empty) |
1 // Copyright (c) 2012 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_BROWSER_UI_WEBUI_HELP_VERSION_UPDATER_UNIMPLEMENTED_H_ | |
6 #define CHROME_BROWSER_UI_WEBUI_HELP_VERSION_UPDATER_UNIMPLEMENTED_H_ | |
7 #pragma once | |
8 | |
9 #include "base/compiler_specific.h" | |
10 #include "chrome/browser/ui/webui/help/version_updater.h" | |
11 | |
12 // Temporary empty implementation used by platforms that have not specialized | |
13 // VersionUpdater. | |
14 class VersionUpdaterUnimplemented : public VersionUpdater { | |
15 public: | |
16 // VersionUpdater implementation. | |
17 virtual void CheckForUpdate(const StatusCallback& callback) OVERRIDE {} | |
18 virtual void RelaunchBrowser() const OVERRIDE {} | |
19 | |
20 protected: | |
21 friend class VersionUpdater; | |
22 | |
23 // Clients must use VersionUpdater::Create(). | |
24 VersionUpdaterUnimplemented() {} | |
25 virtual ~VersionUpdaterUnimplemented() {} | |
26 | |
27 private: | |
28 DISALLOW_COPY_AND_ASSIGN(VersionUpdaterUnimplemented); | |
29 }; | |
30 | |
31 #endif // CHROME_BROWSER_UI_WEBUI_HELP_VERSION_UPDATER_UNIMPLEMENTED_H_ | |
OLD | NEW |