Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(348)

Side by Side Diff: chrome/browser/extensions/webstore_data_fetcher_delegate.h

Issue 12212076: Move web store data fetching and parsing out of WebstoreStandaloneInstaller. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/webstore_data_fetcher.cc ('k') | chrome/browser/extensions/webstore_standalone_installer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698