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

Side by Side Diff: content/child/appcache/appcache_dispatcher.h

Issue 22314003: NavigationController prototype Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: NavController prototype - chrome side Created 7 years, 3 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
1 // Copyright 2013 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_CHILD_APPCACHE_APPCACHE_DISPATCHER_H_ 5 #ifndef CONTENT_CHILD_APPCACHE_APPCACHE_DISPATCHER_H_
6 #define CONTENT_CHILD_APPCACHE_APPCACHE_DISPATCHER_H_ 6 #define CONTENT_CHILD_APPCACHE_APPCACHE_DISPATCHER_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 25 matching lines...) Expand all
36 void OnStatusChanged(const std::vector<int>& host_ids, 36 void OnStatusChanged(const std::vector<int>& host_ids,
37 appcache::Status status); 37 appcache::Status status);
38 void OnEventRaised(const std::vector<int>& host_ids, 38 void OnEventRaised(const std::vector<int>& host_ids,
39 appcache::EventID event_id); 39 appcache::EventID event_id);
40 void OnProgressEventRaised(const std::vector<int>& host_ids, 40 void OnProgressEventRaised(const std::vector<int>& host_ids,
41 const GURL& url, int num_total, int num_complete); 41 const GURL& url, int num_total, int num_complete);
42 void OnErrorEventRaised(const std::vector<int>& host_ids, 42 void OnErrorEventRaised(const std::vector<int>& host_ids,
43 const std::string& message); 43 const std::string& message);
44 void OnLogMessage(int host_id, int log_level, const std::string& message); 44 void OnLogMessage(int host_id, int log_level, const std::string& message);
45 void OnContentBlocked(int host_id, const GURL& manifest_url); 45 void OnContentBlocked(int host_id, const GURL& manifest_url);
46 void OnControllerReady(int host_id);
46 47
47 AppCacheBackendProxy backend_proxy_; 48 AppCacheBackendProxy backend_proxy_;
48 scoped_ptr<appcache::AppCacheFrontend> frontend_; 49 scoped_ptr<appcache::AppCacheFrontend> frontend_;
49 }; 50 };
50 51
51 } // namespace content 52 } // namespace content
52 53
53 #endif // CONTENT_CHILD_APPCACHE_APPCACHE_DISPATCHER_H_ 54 #endif // CONTENT_CHILD_APPCACHE_APPCACHE_DISPATCHER_H_
OLDNEW
« no previous file with comments | « content/child/appcache/appcache_backend_proxy.cc ('k') | content/child/appcache/appcache_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698