Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(637)

Side by Side Diff: extensions/shell/app/shell_main_delegate.h

Issue 1508213002: Replace ScopedVector<ScopedFD> with std::vector<ScopedFD> (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: danakj feedback Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef EXTENSIONS_SHELL_APP_SHELL_MAIN_DELEGATE_H_ 5 #ifndef EXTENSIONS_SHELL_APP_SHELL_MAIN_DELEGATE_H_
6 #define EXTENSIONS_SHELL_APP_SHELL_MAIN_DELEGATE_H_ 6 #define EXTENSIONS_SHELL_APP_SHELL_MAIN_DELEGATE_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/memory/scoped_vector.h"
10 #include "content/public/app/content_main_delegate.h" 11 #include "content/public/app/content_main_delegate.h"
11 12
12 namespace content { 13 namespace content {
13 class BrowserContext; 14 class BrowserContext;
14 class ContentBrowserClient; 15 class ContentBrowserClient;
15 class ContentClient; 16 class ContentClient;
16 class ContentRendererClient; 17 class ContentRendererClient;
17 } 18 }
18 19
19 namespace extensions { 20 namespace extensions {
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 scoped_ptr<content::ContentBrowserClient> browser_client_; 55 scoped_ptr<content::ContentBrowserClient> browser_client_;
55 scoped_ptr<content::ContentRendererClient> renderer_client_; 56 scoped_ptr<content::ContentRendererClient> renderer_client_;
56 scoped_ptr<content::ContentUtilityClient> utility_client_; 57 scoped_ptr<content::ContentUtilityClient> utility_client_;
57 58
58 DISALLOW_COPY_AND_ASSIGN(ShellMainDelegate); 59 DISALLOW_COPY_AND_ASSIGN(ShellMainDelegate);
59 }; 60 };
60 61
61 } // namespace extensions 62 } // namespace extensions
62 63
63 #endif // EXTENSIONS_SHELL_APP_SHELL_MAIN_DELEGATE_H_ 64 #endif // EXTENSIONS_SHELL_APP_SHELL_MAIN_DELEGATE_H_
OLDNEW
« no previous file with comments | « content/zygote/zygote_linux.cc ('k') | sandbox/linux/integration_tests/namespace_unix_domain_socket_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698