OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #include "config.h" | 5 #include "config.h" |
6 | 6 |
7 #include "base/at_exit.h" | 7 #include "base/at_exit.h" |
8 #include "base/gfx/native_widget_types.h" | 8 #include "base/gfx/native_widget_types.h" |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 const GURL& url, | 50 const GURL& url, |
51 const GURL& policy_url, | 51 const GURL& policy_url, |
52 const GURL& referrer, | 52 const GURL& referrer, |
53 const std::string& frame_origin, | 53 const std::string& frame_origin, |
54 const std::string& main_frame_origin, | 54 const std::string& main_frame_origin, |
55 const std::string& headers, | 55 const std::string& headers, |
56 const std::string& default_mime_type, | 56 const std::string& default_mime_type, |
57 int load_flags, | 57 int load_flags, |
58 int requestor_pid, | 58 int requestor_pid, |
59 ResourceType::Type request_type, | 59 ResourceType::Type request_type, |
| 60 int app_cache_context_id, |
60 int routing_id) { | 61 int routing_id) { |
61 return NULL; | 62 return NULL; |
62 } | 63 } |
63 | 64 |
64 string16 GetLocalizedString(int message_id) { | 65 string16 GetLocalizedString(int message_id) { |
65 return L""; | 66 return L""; |
66 } | 67 } |
67 | 68 |
68 std::string GetDataResource(int resource_id) { | 69 std::string GetDataResource(int resource_id) { |
69 return ""; | 70 return ""; |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 bool EnsureFontLoaded(HFONT font) { | 140 bool EnsureFontLoaded(HFONT font) { |
140 return true; | 141 return true; |
141 } | 142 } |
142 | 143 |
143 bool DownloadUrl(const std::string& url, HWND caller_window) { | 144 bool DownloadUrl(const std::string& url, HWND caller_window) { |
144 return false; | 145 return false; |
145 } | 146 } |
146 #endif | 147 #endif |
147 | 148 |
148 } | 149 } |
OLD | NEW |