| 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/plugins/npapi/plugin_list.h" | 5 #include "webkit/plugins/npapi/plugin_list.h" |
| 6 | 6 |
| 7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
| 8 #include "base/path_service.h" | 8 #include "base/path_service.h" |
| 9 #include "base/sha1.h" | 9 #include "base/sha1.h" |
| 10 #include "base/stringprintf.h" |
| 10 #include "base/string_split.h" | 11 #include "base/string_split.h" |
| 11 #include "base/string_util.h" | 12 #include "base/string_util.h" |
| 12 #include "build/build_config.h" | 13 #include "build/build_config.h" |
| 13 | 14 |
| 14 namespace webkit { | 15 namespace webkit { |
| 15 namespace npapi { | 16 namespace npapi { |
| 16 | 17 |
| 17 namespace { | 18 namespace { |
| 18 | 19 |
| 19 // We build up a list of files and mtimes so we can sort them. | 20 // We build up a list of files and mtimes so we can sort them. |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 | 265 |
| 265 // TODO(evanm): prefer the newest version of flash, etc. here? | 266 // TODO(evanm): prefer the newest version of flash, etc. here? |
| 266 | 267 |
| 267 VLOG_IF(1, PluginList::DebugPluginLoading()) << "Using " << info.path.value(); | 268 VLOG_IF(1, PluginList::DebugPluginLoading()) << "Using " << info.path.value(); |
| 268 | 269 |
| 269 return true; | 270 return true; |
| 270 } | 271 } |
| 271 | 272 |
| 272 } // namespace npapi | 273 } // namespace npapi |
| 273 } // namespace webkit | 274 } // namespace webkit |
| OLD | NEW |