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

Unified Diff: chrome/browser/extensions/webstore_data_fetcher.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: 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/webstore_data_fetcher.h
diff --git a/chrome/browser/extensions/webstore_data_fetcher.h b/chrome/browser/extensions/webstore_data_fetcher.h
new file mode 100644
index 0000000000000000000000000000000000000000..026e63b47705201f36506419fe43f9a0096f4db5
--- /dev/null
+++ b/chrome/browser/extensions/webstore_data_fetcher.h
@@ -0,0 +1,63 @@
+// Copyright 2013 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_EXTENSIONS_WEBSTORE_DATA_FETCHER_H_
+#define CHROME_BROWSER_EXTENSIONS_WEBSTORE_DATA_FETCHER_H_
+
+#include <string>
+
+#include "base/memory/weak_ptr.h"
+#include "googleurl/src/gurl.h"
+#include "net/url_request/url_fetcher_delegate.h"
+
+namespace base {
+class DictionaryValue;
+}
+
+namespace net {
+class URLFetcher;
+class URLRequestContextGetter;
+}
+
+namespace extensions {
+
+class WebstoreDataFetcherDelegate;
+
+// WebstoreDataFetcher fetches web store data and parses it into a
+// DictionaryValue.
+class WebstoreDataFetcher : public base::SupportsWeakPtr<WebstoreDataFetcher>,
+ public net::URLFetcherDelegate {
+ public:
+ WebstoreDataFetcher(WebstoreDataFetcherDelegate* delegate,
+ net::URLRequestContextGetter* request_context,
+ const GURL& referrer_url,
+ const std::string webstore_item_id);
+ virtual ~WebstoreDataFetcher();
+
+ void Start();
+
+ private:
+ class SafeWebstoreResponseParser;
+
+ // Client callbacks for SafeWebstoreResponseParser when parsing is complete.
+ void OnWebstoreResponseParseSuccess(base::DictionaryValue* webstore_data);
+ void OnWebstoreResponseParseFailure(const std::string& error);
+
+ // net::URLFetcherDelegate overrides:
+ virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE;
+
+ WebstoreDataFetcherDelegate* delegate_;
+ net::URLRequestContextGetter* request_context_;
+ GURL referrer_url_;
+ std::string id_;
+
+ // For fetching webstore JSON data.
+ scoped_ptr<net::URLFetcher> webstore_data_url_fetcher_;
+
+ DISALLOW_COPY_AND_ASSIGN(WebstoreDataFetcher);
+};
+
+} // namespace extensions
+
+#endif // CHROME_BROWSER_EXTENSIONS_WEBSTORE_DATA_FETCHER_H_
« no previous file with comments | « no previous file | chrome/browser/extensions/webstore_data_fetcher.cc » ('j') | chrome/browser/extensions/webstore_data_fetcher.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698