|  | // 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_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_ |