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

Side by Side Diff: webkit/renderer/appcache/appcache_frontend_impl.h

Issue 22410007: Move appcache_frontend_impl.* to content/renderer/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 4 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 (c) 2011 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 WEBKIT_RENDERER_APPCACHE_APPCACHE_FRONTEND_IMPL_H_
6 #define WEBKIT_RENDERER_APPCACHE_APPCACHE_FRONTEND_IMPL_H_
7
8 #include <string>
9 #include <vector>
10
11 #include "webkit/common/appcache/appcache_interfaces.h"
12 #include "webkit/renderer/webkit_storage_renderer_export.h"
13
14 namespace appcache {
15
16 class WEBKIT_STORAGE_RENDERER_EXPORT AppCacheFrontendImpl
17 : public AppCacheFrontend {
18 public:
19 virtual void OnCacheSelected(
20 int host_id, const appcache::AppCacheInfo& info) OVERRIDE;
21 virtual void OnStatusChanged(const std::vector<int>& host_ids,
22 Status status) OVERRIDE;
23 virtual void OnEventRaised(const std::vector<int>& host_ids,
24 EventID event_id) OVERRIDE;
25 virtual void OnProgressEventRaised(const std::vector<int>& host_ids,
26 const GURL& url,
27 int num_total, int num_complete) OVERRIDE;
28 virtual void OnErrorEventRaised(const std::vector<int>& host_ids,
29 const std::string& message) OVERRIDE;
30 virtual void OnLogMessage(int host_id, LogLevel log_level,
31 const std::string& message) OVERRIDE;
32 virtual void OnContentBlocked(int host_id, const GURL& manifest_url) OVERRIDE;
33 };
34
35 } // namespace
36
37 #endif // WEBKIT_RENDERER_APPCACHE_APPCACHE_FRONTEND_IMPL_H_
OLDNEW
« no previous file with comments | « content/worker/worker_webapplicationcachehost_impl.cc ('k') | webkit/renderer/appcache/appcache_frontend_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698