Index: chrome/browser/profiles/profile.h |
=================================================================== |
--- chrome/browser/profiles/profile.h (revision 96503) |
+++ chrome/browser/profiles/profile.h (working copy) |
@@ -48,6 +48,10 @@ |
class SpeechRecognizer; |
} |
+namespace chrome_browser_net { |
+class Predictor; |
+} |
+ |
class AutocompleteClassifier; |
class BookmarkModel; |
class BrowserSignin; |
@@ -552,6 +556,9 @@ |
// Creates an OffTheRecordProfile which points to this Profile. |
Profile* CreateOffTheRecordProfile(); |
+ virtual chrome_browser_net::Predictor* GetNetworkPredictor() { |
+ return NULL; |
+ } |
willchan no longer on Chromium
2011/08/16 22:14:48
Add a line after this.
rpetterson
2011/08/17 05:43:39
Done.
|
protected: |
friend class OffTheRecordProfileImpl; |