OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/browser/extensions/component_loader.h" | 5 #include "chrome/browser/extensions/component_loader.h" |
6 | 6 |
7 #include <map> | 7 #include <map> |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
11 #include "base/file_util.h" | 11 #include "base/file_util.h" |
12 #include "base/json/json_string_value_serializer.h" | 12 #include "base/json/json_string_value_serializer.h" |
13 #include "base/metrics/field_trial.h" | 13 #include "base/metrics/field_trial.h" |
14 #include "base/path_service.h" | 14 #include "base/path_service.h" |
15 #include "base/prefs/pref_change_registrar.h" | 15 #include "base/prefs/pref_change_registrar.h" |
16 #include "chrome/browser/chrome_notification_types.h" | 16 #include "chrome/browser/chrome_notification_types.h" |
17 #include "chrome/browser/extensions/extension_service.h" | 17 #include "chrome/browser/extensions/extension_service.h" |
18 #include "chrome/browser/profiles/profile.h" | 18 #include "chrome/browser/profiles/profile.h" |
19 #include "chrome/common/chrome_paths.h" | 19 #include "chrome/common/chrome_paths.h" |
20 #include "chrome/common/chrome_switches.h" | 20 #include "chrome/common/chrome_switches.h" |
21 #include "chrome/common/chrome_version_info.h" | 21 #include "chrome/common/chrome_version_info.h" |
22 #include "chrome/common/extensions/extension_file_util.h" | 22 #include "chrome/common/extensions/extension_file_util.h" |
23 #include "chrome/common/pref_names.h" | 23 #include "chrome/common/pref_names.h" |
24 #include "content/public/browser/notification_details.h" | 24 #include "content/public/browser/notification_details.h" |
25 #include "content/public/browser/notification_source.h" | 25 #include "content/public/browser/notification_source.h" |
26 #include "content/public/browser/plugin_service.h" | |
26 #include "extensions/common/extension.h" | 27 #include "extensions/common/extension.h" |
27 #include "extensions/common/id_util.h" | 28 #include "extensions/common/id_util.h" |
28 #include "extensions/common/manifest_constants.h" | 29 #include "extensions/common/manifest_constants.h" |
29 #include "grit/browser_resources.h" | 30 #include "grit/browser_resources.h" |
30 #include "grit/generated_resources.h" | 31 #include "grit/generated_resources.h" |
31 #include "ui/base/l10n/l10n_util.h" | 32 #include "ui/base/l10n/l10n_util.h" |
32 #include "ui/base/resource/resource_bundle.h" | 33 #include "ui/base/resource/resource_bundle.h" |
33 | 34 |
34 #if defined(USE_AURA) | 35 #if defined(USE_AURA) |
35 #include "grit/keyboard_resources.h" | 36 #include "grit/keyboard_resources.h" |
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
553 Add(IDR_GOOGLE_NOW_MANIFEST, | 554 Add(IDR_GOOGLE_NOW_MANIFEST, |
554 base::FilePath(FILE_PATH_LITERAL("google_now"))); | 555 base::FilePath(FILE_PATH_LITERAL("google_now"))); |
555 } | 556 } |
556 #endif | 557 #endif |
557 | 558 |
558 #if defined(GOOGLE_CHROME_BUILD) | 559 #if defined(GOOGLE_CHROME_BUILD) |
559 #if !defined(OS_CHROMEOS) // http://crbug.com/314799 | 560 #if !defined(OS_CHROMEOS) // http://crbug.com/314799 |
560 AddNetworkSpeechSynthesisExtension(); | 561 AddNetworkSpeechSynthesisExtension(); |
561 #endif | 562 #endif |
562 #endif // defined(GOOGLE_CHROME_BUILD) | 563 #endif // defined(GOOGLE_CHROME_BUILD) |
564 | |
565 base::FilePath pdf_path; | |
566 content::PluginService* plugin_service = | |
567 content::PluginService::GetInstance(); | |
568 PathService::Get(chrome::FILE_PDF_PLUGIN, &pdf_path); | |
tapted
2013/12/05 03:34:37
nit: maybe include this in the `if` condition, so
| |
569 if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kOutOfProcessPdf) && | |
570 plugin_service->GetRegisteredPpapiPluginInfo(pdf_path)) { | |
571 Add(IDR_PDF_MANIFEST, base::FilePath(FILE_PATH_LITERAL("pdf"))); | |
572 } | |
563 } | 573 } |
564 | 574 |
565 void ComponentLoader::UnloadComponent(ComponentExtensionInfo* component) { | 575 void ComponentLoader::UnloadComponent(ComponentExtensionInfo* component) { |
566 delete component->manifest; | 576 delete component->manifest; |
567 if (extension_service_->is_ready()) { | 577 if (extension_service_->is_ready()) { |
568 extension_service_-> | 578 extension_service_-> |
569 RemoveComponentExtension(component->extension_id); | 579 RemoveComponentExtension(component->extension_id); |
570 } | 580 } |
571 } | 581 } |
572 | 582 |
573 } // namespace extensions | 583 } // namespace extensions |
OLD | NEW |