summaryrefslogtreecommitdiffstats
path: root/chrome/common
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-26 21:15:06 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-26 21:15:06 +0000
commitc5a7011822b46324a5c5223854e51af52323ff29 (patch)
tree4e8b5287f780769e2d0c7ebf90b7cd22de883175 /chrome/common
parente1454e262443a3048c2c51718c1ff463c7e63f03 (diff)
downloadchromium_src-c5a7011822b46324a5c5223854e51af52323ff29.zip
chromium_src-c5a7011822b46324a5c5223854e51af52323ff29.tar.gz
chromium_src-c5a7011822b46324a5c5223854e51af52323ff29.tar.bz2
Fix/punt on a bunch of NOTIMPLEMENTEDs.
Review URL: http://codereview.chromium.org/53065 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12604 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r--chrome/common/chrome_plugin_lib.cc4
-rw-r--r--chrome/common/temp_scaffolding_stubs.cc6
2 files changed, 5 insertions, 5 deletions
diff --git a/chrome/common/chrome_plugin_lib.cc b/chrome/common/chrome_plugin_lib.cc
index 7fbca70..40a0c76 100644
--- a/chrome/common/chrome_plugin_lib.cc
+++ b/chrome/common/chrome_plugin_lib.cc
@@ -122,7 +122,7 @@ void ChromePluginLib::RegisterPluginsWithNPAPI() {
return;
// Note: we can only access the NPAPI list because the PluginService has done
// the locking for us. We should not touch it anywhere else.
-#if defined(OS_WIN)
+#if defined(OS_WIN) || defined(OS_LINUX)
NPAPI::PluginList::AddExtraPluginPath(path);
#else
// TODO(port): plugins not yet implemented
@@ -255,7 +255,7 @@ int ChromePluginLib::CP_Test(void* param) {
bool ChromePluginLib::Load() {
#if !defined(OS_WIN)
// TODO(port): plugins not yet implemented
- NOTIMPLEMENTED();
+ NOTIMPLEMENTED() << " -- gears loading code.";
return false;
#else
DCHECK(module_ == 0);
diff --git a/chrome/common/temp_scaffolding_stubs.cc b/chrome/common/temp_scaffolding_stubs.cc
index 4690499..181d4b1 100644
--- a/chrome/common/temp_scaffolding_stubs.cc
+++ b/chrome/common/temp_scaffolding_stubs.cc
@@ -211,19 +211,19 @@ int FirstRun::ImportNow(Profile* profile, const CommandLine& cmdline) {
// static
bool Upgrade::IsBrowserAlreadyRunning() {
- NOTIMPLEMENTED();
+ // http://code.google.com/p/chromium/issues/detail?id=9295
return false;
}
// static
bool Upgrade::RelaunchChromeBrowser(const CommandLine& command_line) {
- NOTIMPLEMENTED();
+ // http://code.google.com/p/chromium/issues/detail?id=9295
return true;
}
// static
bool Upgrade::SwapNewChromeExeIfPresent() {
- NOTIMPLEMENTED();
+ // http://code.google.com/p/chromium/issues/detail?id=9295
return true;
}