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

Side by Side Diff: extensions/browser/guest_view/test_guest_view_manager.cc

Issue 689563002: Cleanup: Remove unneeded path_service.h includes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 1 month 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
« no previous file with comments | « extensions/browser/extension_protocols.cc ('k') | media/audio/win/audio_output_win_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "extensions/browser/guest_view/test_guest_view_manager.h" 5 #include "extensions/browser/guest_view/test_guest_view_manager.h"
6 6
7 #include "base/path_service.h"
8 #include "base/strings/stringprintf.h" 7 #include "base/strings/stringprintf.h"
9 #include "content/public/test/browser_test_utils.h" 8 #include "content/public/test/browser_test_utils.h"
10 #include "extensions/browser/app_window/app_window.h" 9 #include "extensions/browser/app_window/app_window.h"
11 #include "extensions/browser/app_window/app_window_registry.h" 10 #include "extensions/browser/app_window/app_window_registry.h"
12 #include "extensions/browser/extension_host.h" 11 #include "extensions/browser/extension_host.h"
13 #include "extensions/browser/process_manager.h" 12 #include "extensions/browser/process_manager.h"
14 #include "extensions/common/extension.h" 13 #include "extensions/common/extension.h"
15 #include "extensions/common/extension_paths.h" 14 #include "extensions/common/extension_paths.h"
16 #include "extensions/shell/browser/shell_extension_system.h" 15 #include "extensions/shell/browser/shell_extension_system.h"
17 #include "extensions/shell/test/shell_test.h" 16 #include "extensions/shell/test/shell_test.h"
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 // where test_guest_view_manager_ is assigned to a linked_ptr that takes care 91 // where test_guest_view_manager_ is assigned to a linked_ptr that takes care
93 // of deleting it. 92 // of deleting it.
94 TestGuestViewManager* TestGuestViewManagerFactory::GetManager( 93 TestGuestViewManager* TestGuestViewManagerFactory::GetManager(
95 content::BrowserContext* context) { 94 content::BrowserContext* context) {
96 DCHECK(!test_guest_view_manager_); 95 DCHECK(!test_guest_view_manager_);
97 test_guest_view_manager_ = new TestGuestViewManager(context); 96 test_guest_view_manager_ = new TestGuestViewManager(context);
98 return test_guest_view_manager_; 97 return test_guest_view_manager_;
99 } 98 }
100 99
101 } // namespace extensions 100 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/browser/extension_protocols.cc ('k') | media/audio/win/audio_output_win_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698