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 #include "webkit/glue/webkit_glue.h" | 5 #include "webkit/glue/webkit_glue.h" |
6 | 6 |
7 #include "base/base_paths.h" | 7 #include "base/base_paths.h" |
8 #include "base/path_service.h" | 8 #include "base/path_service.h" |
9 #include "googleurl/src/gurl.h" | 9 #include "googleurl/src/gurl.h" |
10 #include "webkit/glue/plugins/plugin_list.h" | 10 #include "webkit/glue/plugins/plugin_list.h" |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 | 52 |
53 base::StringPiece GetDataResource(int resource_id) { | 53 base::StringPiece GetDataResource(int resource_id) { |
54 // TODO(tkent): implement this. | 54 // TODO(tkent): implement this. |
55 return ""; | 55 return ""; |
56 } | 56 } |
57 | 57 |
58 std::string GetProductVersion() { | 58 std::string GetProductVersion() { |
59 return std::string("DumpRenderTree/0.0.0.0"); | 59 return std::string("DumpRenderTree/0.0.0.0"); |
60 } | 60 } |
61 | 61 |
| 62 bool GetPluginFinderURL(std::string* plugin_finder_url) { |
| 63 return false; |
| 64 } |
| 65 |
| 66 #if defined(OS_WIN) |
| 67 bool DownloadUrl(const std::string& url, HWND caller_window) { |
| 68 return false; |
| 69 } |
| 70 #endif |
| 71 |
62 } // namespace webkit_glue | 72 } // namespace webkit_glue |
OLD | NEW |