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

Side by Side Diff: chrome/test/testing_profile.h

Issue 159882: Implements extensions devtools API (Closed)
Patch Set: Fixes flakiness in tests by grabbing tab ID in C++ land and passing it down Created 11 years, 4 months 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 | « chrome/test/data/extensions/devtools/timeline_api_two/manifest.json ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 CHROME_TEST_TESTING_PROFILE_H_ 5 #ifndef CHROME_TEST_TESTING_PROFILE_H_
6 #define CHROME_TEST_TESTING_PROFILE_H_ 6 #define CHROME_TEST_TESTING_PROFILE_H_
7 7
8 #include "base/base_paths.h" 8 #include "base/base_paths.h"
9 #include "base/file_util.h" 9 #include "base/file_util.h"
10 #include "base/path_service.h" 10 #include "base/path_service.h"
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 } 76 }
77 virtual VisitedLinkMaster* GetVisitedLinkMaster() { 77 virtual VisitedLinkMaster* GetVisitedLinkMaster() {
78 return NULL; 78 return NULL;
79 } 79 }
80 virtual ExtensionsService* GetExtensionsService() { 80 virtual ExtensionsService* GetExtensionsService() {
81 return NULL; 81 return NULL;
82 } 82 }
83 virtual UserScriptMaster* GetUserScriptMaster() { 83 virtual UserScriptMaster* GetUserScriptMaster() {
84 return NULL; 84 return NULL;
85 } 85 }
86 virtual ExtensionDevToolsManager* GetExtensionDevToolsManager() {
87 return NULL;
88 }
86 virtual ExtensionProcessManager* GetExtensionProcessManager() { 89 virtual ExtensionProcessManager* GetExtensionProcessManager() {
87 return NULL; 90 return NULL;
88 } 91 }
89 virtual ExtensionMessageService* GetExtensionMessageService() { 92 virtual ExtensionMessageService* GetExtensionMessageService() {
90 return NULL; 93 return NULL;
91 } 94 }
92 virtual SSLHostState* GetSSLHostState() { 95 virtual SSLHostState* GetSSLHostState() {
93 return NULL; 96 return NULL;
94 } 97 }
95 virtual net::ForceTLSState* GetForceTLSState() { 98 virtual net::ForceTLSState* GetForceTLSState() {
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 271
269 std::wstring id_; 272 std::wstring id_;
270 273
271 bool off_the_record_; 274 bool off_the_record_;
272 275
273 // Did the last session exit cleanly? Default is true. 276 // Did the last session exit cleanly? Default is true.
274 bool last_session_exited_cleanly_; 277 bool last_session_exited_cleanly_;
275 }; 278 };
276 279
277 #endif // CHROME_TEST_TESTING_PROFILE_H_ 280 #endif // CHROME_TEST_TESTING_PROFILE_H_
OLDNEW
« no previous file with comments | « chrome/test/data/extensions/devtools/timeline_api_two/manifest.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698