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

Side by Side Diff: content/browser/appcache/appcache_frontend_proxy.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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_BROWSER_APPCACHE_APPCACHE_FRONTEND_PROXY_H_ 5 #ifndef CONTENT_BROWSER_APPCACHE_APPCACHE_FRONTEND_PROXY_H_
6 #define CONTENT_BROWSER_APPCACHE_APPCACHE_FRONTEND_PROXY_H_ 6 #define CONTENT_BROWSER_APPCACHE_APPCACHE_FRONTEND_PROXY_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 16 matching lines...) Expand all
27 appcache::EventID event_id) OVERRIDE; 27 appcache::EventID event_id) OVERRIDE;
28 virtual void OnProgressEventRaised(const std::vector<int>& host_ids, 28 virtual void OnProgressEventRaised(const std::vector<int>& host_ids,
29 const GURL& url, 29 const GURL& url,
30 int num_total, int num_complete) OVERRIDE; 30 int num_total, int num_complete) OVERRIDE;
31 virtual void OnErrorEventRaised(const std::vector<int>& host_ids, 31 virtual void OnErrorEventRaised(const std::vector<int>& host_ids,
32 const std::string& message) OVERRIDE; 32 const std::string& message) OVERRIDE;
33 virtual void OnLogMessage(int host_id, appcache::LogLevel log_level, 33 virtual void OnLogMessage(int host_id, appcache::LogLevel log_level,
34 const std::string& message) OVERRIDE; 34 const std::string& message) OVERRIDE;
35 virtual void OnContentBlocked(int host_id, 35 virtual void OnContentBlocked(int host_id,
36 const GURL& manifest_url) OVERRIDE; 36 const GURL& manifest_url) OVERRIDE;
37 virtual void OnControllerReady(int host_id) OVERRIDE;
37 38
38 private: 39 private:
39 IPC::Sender* sender_; 40 IPC::Sender* sender_;
40 }; 41 };
41 42
42 } // namespace content 43 } // namespace content
43 44
44 #endif // CONTENT_BROWSER_APPCACHE_APPCACHE_FRONTEND_PROXY_H_ 45 #endif // CONTENT_BROWSER_APPCACHE_APPCACHE_FRONTEND_PROXY_H_
OLDNEW
« no previous file with comments | « content/browser/appcache/appcache_executable_handler_impl.cc ('k') | content/browser/appcache/appcache_frontend_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698