blob: 0f25dab1f4d15d3714c5e23cd81bb57492a7f70b [file] [log] [blame]
// 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.
#ifndef CHROME_BROWSER_UI_WEBUI_HELP_HELP_HANDLER_H_
#define CHROME_BROWSER_UI_WEBUI_HELP_HELP_HANDLER_H_
#include <string>
#include "base/compiler_specific.h"
#include "base/memory/weak_ptr.h"
#include "chrome/browser/ui/webui/help/version_updater.h"
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h"
#include "content/public/browser/web_ui_message_handler.h"
#if defined(OS_CHROMEOS)
#include "base/platform_file.h"
#include "chrome/browser/chromeos/version_loader.h"
#endif // defined(OS_CHROMEOS)
namespace content {
class WebUIDataSource;
}
// WebUI message handler for the help page.
class HelpHandler : public content::WebUIMessageHandler,
public content::NotificationObserver {
public:
HelpHandler();
virtual ~HelpHandler();
// WebUIMessageHandler implementation.
virtual void RegisterMessages() OVERRIDE;
// Fills |source| with string values for the UI.
void GetLocalizedValues(content::WebUIDataSource* source);
// NotificationObserver implementation.
virtual void Observe(int type, const content::NotificationSource& source,
const content::NotificationDetails& details) OVERRIDE;
private:
// Initializes querying values for the page.
void OnPageLoaded(const base::ListValue* args);
#if defined(OS_MACOSX)
// Promotes the updater for all users.
void PromoteUpdater(const base::ListValue* args);
#endif
// Relaunches the browser. |args| must be empty.
void RelaunchNow(const base::ListValue* args);
// Opens the feedback dialog. |args| must be empty.
void OpenFeedbackDialog(const base::ListValue* args);
// Opens the help page. |args| must be empty.
void OpenHelpPage(const base::ListValue* args);
#if defined(OS_CHROMEOS)
// Sets the release track version.
void SetChannel(const base::ListValue* args);
// Performs relaunch and powerwash.
void RelaunchAndPowerwash(const base::ListValue* args);
#endif
// Callback method which forwards status updates to the page.
void SetUpdateStatus(VersionUpdater::Status status, int progress,
const string16& fail_message);
#if defined(OS_MACOSX)
// Callback method which forwards promotion state to the page.
void SetPromotionState(VersionUpdater::PromotionState state);
#endif
#if defined(OS_CHROMEOS)
// Callbacks from VersionLoader.
void OnOSVersion(const std::string& version);
void OnOSFirmware(const std::string& firmware);
void OnCurrentChannel(const std::string& channel);
void OnTargetChannel(const std::string& channel);
void ProcessLsbFileInfo(
base::PlatformFileError rv, const base::PlatformFileInfo& file_info);
#endif
// Specialized instance of the VersionUpdater used to update the browser.
scoped_ptr<VersionUpdater> version_updater_;
// Used for callbacks.
base::WeakPtrFactory<HelpHandler> weak_factory_;
// Used to observe notifications.
content::NotificationRegistrar registrar_;
#if defined(OS_CHROMEOS)
// Handles asynchronously loading the CrOS version info.
chromeos::VersionLoader loader_;
// Used to request the version.
CancelableTaskTracker tracker_;
#endif // defined(OS_CHROMEOS)
DISALLOW_COPY_AND_ASSIGN(HelpHandler);
};
#endif // CHROME_BROWSER_UI_WEBUI_HELP_HELP_HANDLER_H_