diff options
author | mdempsky <mdempsky@chromium.org> | 2015-12-09 14:54:46 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-12-09 22:55:28 +0000 |
commit | f12295a5c4790b877b865cc5b062c8543c353907 (patch) | |
tree | c5778789a9c02715e39827b52c0de5d8c7ee3c66 /extensions/shell | |
parent | be041f3e7506d634d80f9bdb4323b118efd59554 (diff) | |
download | chromium_src-f12295a5c4790b877b865cc5b062c8543c353907.zip chromium_src-f12295a5c4790b877b865cc5b062c8543c353907.tar.gz chromium_src-f12295a5c4790b877b865cc5b062c8543c353907.tar.bz2 |
Replace ScopedVector<ScopedFD> with std::vector<ScopedFD>
TBR=mseaborn@chromium.org,piman@chromium.org,derat@chromium.org
Review URL: https://codereview.chromium.org/1508213002
Cr-Commit-Position: refs/heads/master@{#364189}
Diffstat (limited to 'extensions/shell')
-rw-r--r-- | extensions/shell/app/shell_main_delegate.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/extensions/shell/app/shell_main_delegate.h b/extensions/shell/app/shell_main_delegate.h index 587de92..4a616df 100644 --- a/extensions/shell/app/shell_main_delegate.h +++ b/extensions/shell/app/shell_main_delegate.h @@ -7,6 +7,7 @@ #include "base/compiler_specific.h" #include "base/memory/scoped_ptr.h" +#include "base/memory/scoped_vector.h" #include "content/public/app/content_main_delegate.h" namespace content { |