diff options
author | gspencer@google.com <gspencer@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-23 19:07:32 +0000 |
---|---|---|
committer | gspencer@google.com <gspencer@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-23 19:07:32 +0000 |
commit | 8b8a8fd0d47835f8f90cd4d568a1697d1f8dec25 (patch) | |
tree | f0b0a823033c805c1090997b82f806f028c8d94e /o3d/plugin/cross | |
parent | 6513feea8262f7daa26132681c93e4229aa1d357 (diff) | |
download | chromium_src-8b8a8fd0d47835f8f90cd4d568a1697d1f8dec25.zip chromium_src-8b8a8fd0d47835f8f90cd4d568a1697d1f8dec25.tar.gz chromium_src-8b8a8fd0d47835f8f90cd4d568a1697d1f8dec25.tar.bz2 |
This updates the DEPS to bring them in line with the versions
that Chrome is currently using, and it removes "files" from the NPAPI
include paths and file location in third_party so that we can be consistent
with other Chrome third party directories.
TEST=build using gyp and scons and ran unit tests on each.
Review URL: http://codereview.chromium.org/159277
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@21415 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d/plugin/cross')
-rw-r--r-- | o3d/plugin/cross/config_common.cc | 2 | ||||
-rw-r--r-- | o3d/plugin/cross/main.h | 4 | ||||
-rw-r--r-- | o3d/plugin/cross/o3d_glue.cc | 8 | ||||
-rw-r--r-- | o3d/plugin/cross/o3d_glue.h | 2 | ||||
-rw-r--r-- | o3d/plugin/cross/stream_manager.cc | 2 |
5 files changed, 9 insertions, 9 deletions
diff --git a/o3d/plugin/cross/config_common.cc b/o3d/plugin/cross/config_common.cc index 180443c..7ed7965a 100644 --- a/o3d/plugin/cross/config_common.cc +++ b/o3d/plugin/cross/config_common.cc @@ -48,7 +48,7 @@ #include "plugin/cross/config.h" #include "plugin/cross/o3d_glue.h" #include "core/cross/error.h" -#include "third_party/nixysa/files/static_glue/npapi/common.h" +#include "third_party/nixysa/static_glue/npapi/common.h" using glue::_o3d::GetServiceLocator; diff --git a/o3d/plugin/cross/main.h b/o3d/plugin/cross/main.h index c5de7b6..29e386a 100644 --- a/o3d/plugin/cross/main.h +++ b/o3d/plugin/cross/main.h @@ -52,8 +52,8 @@ #include "plugin/cross/o3d_glue.h" #include "plugin/cross/config.h" #include "plugin/cross/stream_manager.h" -#include "third_party/nixysa/files/static_glue/npapi/common.h" -#include "third_party/nixysa/files/static_glue/npapi/npn_api.h" +#include "third_party/nixysa/static_glue/npapi/common.h" +#include "third_party/nixysa/static_glue/npapi/npn_api.h" #if defined(O3D_INTERNAL_PLUGIN) #define HANDLE_CRASHES void(0) diff --git a/o3d/plugin/cross/o3d_glue.cc b/o3d/plugin/cross/o3d_glue.cc index 65912ba..47331ff 100644 --- a/o3d/plugin/cross/o3d_glue.cc +++ b/o3d/plugin/cross/o3d_glue.cc @@ -45,7 +45,7 @@ #include "plugin/cross/stream_manager.h" #include "client_glue.h" #include "globals_glue.h" -#include "third_party/nixysa/files/static_glue/npapi/common.h" +#include "third_party/nixysa/static_glue/npapi/common.h" #ifdef OS_MACOSX #include "plugin_mac.h" @@ -850,9 +850,9 @@ void PluginObject::AsyncTick() { // message handler. // If NPN_PluginThreadAsyncCall worked in more browsers, it would be simpler // to use that. - // We're calling LoadURL here with a URL that will return 0 bytes on browsers
- // that support the "data:" protocol and fail in browsers that don't like IE.
- // On browsers that support it, the side effect is to call the TickCallback.
+ // We're calling LoadURL here with a URL that will return 0 bytes on browsers + // that support the "data:" protocol and fail in browsers that don't like IE. + // On browsers that support it, the side effect is to call the TickCallback. if (!stream_manager_->LoadURL("data:,", NULL, NULL, NULL, new TickCallback(this), NP_NORMAL)) { // Fallback on synchronous call if asynchronous load fails. diff --git a/o3d/plugin/cross/o3d_glue.h b/o3d/plugin/cross/o3d_glue.h index e67d8e6..c61d1d9 100644 --- a/o3d/plugin/cross/o3d_glue.h +++ b/o3d/plugin/cross/o3d_glue.h @@ -66,7 +66,7 @@ #include "core/cross/profiler.h" #include "plugin/cross/np_v8_bridge.h" #include "client_glue.h" -#include "third_party/nixysa/files/static_glue/npapi/common.h" +#include "third_party/nixysa/static_glue/npapi/common.h" namespace o3d { class Client; diff --git a/o3d/plugin/cross/stream_manager.cc b/o3d/plugin/cross/stream_manager.cc index 07f25a2..48da1c1 100644 --- a/o3d/plugin/cross/stream_manager.cc +++ b/o3d/plugin/cross/stream_manager.cc @@ -37,7 +37,7 @@ #include "base/logging.h" #include "plugin/cross/o3d_glue.h" -#include "third_party/nixysa/files/static_glue/npapi/common.h" +#include "third_party/nixysa/static_glue/npapi/common.h" namespace glue { |