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 "chrome/renderer/webplugin_delegate_proxy.h" | 5 #include "chrome/renderer/webplugin_delegate_proxy.h" |
6 | 6 |
7 #if defined(TOOLKIT_USES_GTK) | 7 #if defined(TOOLKIT_USES_GTK) |
8 #include <gtk/gtk.h> | 8 #include <gtk/gtk.h> |
9 #endif | 9 #endif |
10 | 10 |
11 #include <algorithm> | 11 #include <algorithm> |
12 | 12 |
13 #include "app/l10n_util.h" | |
14 #include "app/resource_bundle.h" | 13 #include "app/resource_bundle.h" |
15 #include "base/basictypes.h" | 14 #include "base/basictypes.h" |
16 #include "base/command_line.h" | 15 #include "base/command_line.h" |
17 #include "base/file_util.h" | 16 #include "base/file_util.h" |
18 #include "base/logging.h" | 17 #include "base/logging.h" |
19 #include "base/ref_counted.h" | 18 #include "base/ref_counted.h" |
20 #include "base/string_util.h" | 19 #include "base/string_util.h" |
21 #include "base/sys_info.h" | 20 #include "base/sys_info.h" |
22 #include "chrome/common/child_process_logging.h" | 21 #include "chrome/common/child_process_logging.h" |
23 #include "chrome/common/chrome_switches.h" | 22 #include "chrome/common/chrome_switches.h" |
(...skipping 1533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1557 if (index->mime_type == "application/x-vnd.moveplayer.qm" || | 1556 if (index->mime_type == "application/x-vnd.moveplayer.qm" || |
1558 index->mime_type == "application/x-vnd.moveplay2.qm" || | 1557 index->mime_type == "application/x-vnd.moveplay2.qm" || |
1559 index->mime_type == "application/x-vnd.movenetworks.qm" || | 1558 index->mime_type == "application/x-vnd.movenetworks.qm" || |
1560 index->mime_type == "application/x-vnd.mnplayer.qm") { | 1559 index->mime_type == "application/x-vnd.mnplayer.qm") { |
1561 return true; | 1560 return true; |
1562 } | 1561 } |
1563 } | 1562 } |
1564 return false; | 1563 return false; |
1565 } | 1564 } |
1566 #endif | 1565 #endif |
OLD | NEW |