OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 CHROME_BROWSER_APPCACHE_APPCACHE_FRONTEND_PROXY_H_ | 5 #ifndef CONTENT_BROWSER_APPCACHE_APPCACHE_FRONTEND_PROXY_H_ |
6 #define CHROME_BROWSER_APPCACHE_APPCACHE_FRONTEND_PROXY_H_ | 6 #define CONTENT_BROWSER_APPCACHE_APPCACHE_FRONTEND_PROXY_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "ipc/ipc_message.h" | 12 #include "ipc/ipc_message.h" |
13 #include "webkit/appcache/appcache_interfaces.h" | 13 #include "webkit/appcache/appcache_interfaces.h" |
14 | 14 |
15 // Sends appcache related messages to a child process. | 15 // Sends appcache related messages to a child process. |
16 class AppCacheFrontendProxy : public appcache::AppCacheFrontend { | 16 class AppCacheFrontendProxy : public appcache::AppCacheFrontend { |
(...skipping 13 matching lines...) Expand all Loading... |
30 const std::string& message); | 30 const std::string& message); |
31 virtual void OnLogMessage(int host_id, appcache::LogLevel log_level, | 31 virtual void OnLogMessage(int host_id, appcache::LogLevel log_level, |
32 const std::string& message); | 32 const std::string& message); |
33 virtual void OnContentBlocked(int host_id, | 33 virtual void OnContentBlocked(int host_id, |
34 const GURL& manifest_url); | 34 const GURL& manifest_url); |
35 | 35 |
36 private: | 36 private: |
37 IPC::Message::Sender* sender_; | 37 IPC::Message::Sender* sender_; |
38 }; | 38 }; |
39 | 39 |
40 #endif // CHROME_BROWSER_APPCACHE_APPCACHE_FRONTEND_PROXY_H_ | 40 #endif // CONTENT_BROWSER_APPCACHE_APPCACHE_FRONTEND_PROXY_H_ |
OLD | NEW |