diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-10 00:46:16 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-10 00:46:16 +0000 |
commit | 8392ccddddf7f355d57871a5e9af37750f7139f8 (patch) | |
tree | 90fad5b03f607fcabea23fb3756005c50da970cd /chrome_frame | |
parent | 5e992fa6227a36da5cb705bfca39ebb785027b61 (diff) | |
download | chromium_src-8392ccddddf7f355d57871a5e9af37750f7139f8.zip chromium_src-8392ccddddf7f355d57871a5e9af37750f7139f8.tar.gz chromium_src-8392ccddddf7f355d57871a5e9af37750f7139f8.tar.bz2 |
Move stack_container and linked_list to the new containers subdirectory.
This also replaces the StackWString with StackString16 and adds a char traits definition to the string16 header file to make this possible without ifdefs.
BUG=
Review URL: https://codereview.chromium.org/11360174
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167022 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame')
-rw-r--r-- | chrome_frame/chrome_frame_automation.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome_frame/chrome_frame_automation.h b/chrome_frame/chrome_frame_automation.h index 8d591fc..c8d5ad0 100644 --- a/chrome_frame/chrome_frame_automation.h +++ b/chrome_frame/chrome_frame_automation.h @@ -11,9 +11,9 @@ #include <string> #include <vector> +#include "base/containers/stack_container.h" #include "base/memory/ref_counted.h" #include "base/memory/scoped_handle.h" -#include "base/stack_container.h" #include "base/synchronization/lock.h" #include "base/threading/thread.h" #include "base/timer.h" @@ -294,7 +294,7 @@ class ProxyFactory { LaunchDelegate* delegate); private: - typedef StackVector<scoped_refptr<AutomationProxyCacheEntry>, 4> Vector; + typedef base::StackVector<scoped_refptr<AutomationProxyCacheEntry>, 4> Vector; Vector proxies_; // Lock if we are going to call GetAutomationServer from more than one thread. base::Lock lock_; |