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

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

Issue 18198: Add user script support to extensions. (Closed)
Patch Set: Compile fixes for linux and mac Created 11 years, 11 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/browser/profile.cc ('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/path_service.h" 9 #include "base/path_service.h"
10 #include "base/file_util.h" 10 #include "base/file_util.h"
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 } 157 }
158 virtual void ResetTabRestoreService() { 158 virtual void ResetTabRestoreService() {
159 } 159 }
160 virtual void ReinitializeSpellChecker() { 160 virtual void ReinitializeSpellChecker() {
161 } 161 }
162 virtual SpellChecker* GetSpellChecker() { 162 virtual SpellChecker* GetSpellChecker() {
163 return NULL; 163 return NULL;
164 } 164 }
165 virtual void MarkAsCleanShutdown() { 165 virtual void MarkAsCleanShutdown() {
166 } 166 }
167 virtual void InitExtensions() {
168 }
167 169
168 #ifdef CHROME_PERSONALIZATION 170 #ifdef CHROME_PERSONALIZATION
169 virtual ProfilePersonalization* GetProfilePersonalization() { 171 virtual ProfilePersonalization* GetProfilePersonalization() {
170 return NULL; 172 return NULL;
171 } 173 }
172 #endif 174 #endif
173 175
174 protected: 176 protected:
175 // The path of the profile; the various database and other files are relative 177 // The path of the profile; the various database and other files are relative
176 // to this. 178 // to this.
(...skipping 24 matching lines...) Expand all
201 203
202 std::wstring id_; 204 std::wstring id_;
203 205
204 bool off_the_record_; 206 bool off_the_record_;
205 207
206 // Did the last session exit cleanly? Default is true. 208 // Did the last session exit cleanly? Default is true.
207 bool last_session_exited_cleanly_; 209 bool last_session_exited_cleanly_;
208 }; 210 };
209 211
210 #endif // CHROME_TEST_TESTING_PROFILE_H_ 212 #endif // CHROME_TEST_TESTING_PROFILE_H_
OLDNEW
« no previous file with comments | « chrome/browser/profile.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698