- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / browser / extensions / webstore_data_fetcher_delegate.h
1 // Copyright 2013 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_EXTENSIONS_WEBSTORE_DATA_FETCHER_DELEGATE_H_
6 #define CHROME_BROWSER_EXTENSIONS_WEBSTORE_DATA_FETCHER_DELEGATE_H_
7
8 #include <string>
9
10 namespace base {
11 class DictionaryValue;
12 }
13
14 namespace extensions {
15
16 class WebstoreDataFetcherDelegate {
17  public:
18   // Invoked when the web store data request failed.
19   virtual void OnWebstoreRequestFailure() = 0;
20
21   // Invoked when the web store response parsing is successful. Delegate takes
22   // ownership of |webstore_data|.
23   virtual void OnWebstoreResponseParseSuccess(
24       base::DictionaryValue* webstore_data) = 0;
25
26   // Invoked when the web store response parsing is failed.
27   virtual void OnWebstoreResponseParseFailure(const std::string& error) = 0;
28
29  protected:
30   virtual ~WebstoreDataFetcherDelegate() {}
31 };
32
33 }  // namespace extensions
34
35 #endif  // CHROME_BROWSER_EXTENSIONS_WEBSTORE_DATA_FETCHER_DELEGATE_H_