blob: cd82db8c83ff17f60f26e6ada9a5cd78a0ebdfb7 [file] [log] [blame]
// 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.
#ifndef CHROME_BROWSER_UI_EXTENSIONS_EXTENSION_ENABLE_FLOW_DELEGATE_H_
#define CHROME_BROWSER_UI_EXTENSIONS_EXTENSION_ENABLE_FLOW_DELEGATE_H_
class ExtensionEnableFlowDelegate {
public:
// Invoked when |flow| is finished successfully.
virtual void ExtensionEnableFlowFinished() = 0;
// Invoked when |flow| is aborted.
virtual void ExtensionEnableFlowAborted(bool user_initiated) = 0;
protected:
virtual ~ExtensionEnableFlowDelegate() {}
};
#endif // CHROME_BROWSER_UI_EXTENSIONS_EXTENSION_ENABLE_FLOW_DELEGATE_H_