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

Side by Side Diff: chrome/browser/ui/app_list/test/fake_profile.h

Issue 182993003: Add the ability for DevTools to wrap network transactions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 6 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_BROWSER_UI_APP_LIST_TEST_FAKE_PROFILE_H_ 5 #ifndef CHROME_BROWSER_UI_APP_LIST_TEST_FAKE_PROFILE_H_
6 #define CHROME_BROWSER_UI_APP_LIST_TEST_FAKE_PROFILE_H_ 6 #define CHROME_BROWSER_UI_APP_LIST_TEST_FAKE_PROFILE_H_
7 7
8 #include "base/files/file_path.h" 8 #include "base/files/file_path.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "base/sequenced_task_runner.h" 10 #include "base/sequenced_task_runner.h"
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 104
105 #if defined(OS_CHROMEOS) 105 #if defined(OS_CHROMEOS)
106 virtual void ChangeAppLocale( 106 virtual void ChangeAppLocale(
107 const std::string& locale, AppLocaleChangedVia via) OVERRIDE; 107 const std::string& locale, AppLocaleChangedVia via) OVERRIDE;
108 virtual void OnLogin() OVERRIDE; 108 virtual void OnLogin() OVERRIDE;
109 virtual void InitChromeOSPreferences() OVERRIDE; 109 virtual void InitChromeOSPreferences() OVERRIDE;
110 #endif // defined(OS_CHROMEOS) 110 #endif // defined(OS_CHROMEOS)
111 111
112 virtual PrefProxyConfigTracker* GetProxyConfigTracker() OVERRIDE; 112 virtual PrefProxyConfigTracker* GetProxyConfigTracker() OVERRIDE;
113 virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE; 113 virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE;
114 virtual DevToolsNetworkController* GetDevToolsNetworkController() OVERRIDE;
114 virtual void ClearNetworkingHistorySince( 115 virtual void ClearNetworkingHistorySince(
115 base::Time time, const base::Closure& completion) OVERRIDE; 116 base::Time time, const base::Closure& completion) OVERRIDE;
116 virtual void ClearDomainReliabilityMonitor( 117 virtual void ClearDomainReliabilityMonitor(
117 domain_reliability::DomainReliabilityClearMode mode, 118 domain_reliability::DomainReliabilityClearMode mode,
118 const base::Closure& completion) OVERRIDE; 119 const base::Closure& completion) OVERRIDE;
119 virtual GURL GetHomePage() OVERRIDE; 120 virtual GURL GetHomePage() OVERRIDE;
120 virtual bool WasCreatedByVersionOrLater(const std::string& version) OVERRIDE; 121 virtual bool WasCreatedByVersionOrLater(const std::string& version) OVERRIDE;
121 virtual void SetExitType(ExitType exit_type) OVERRIDE; 122 virtual void SetExitType(ExitType exit_type) OVERRIDE;
122 virtual ExitType GetLastSessionExitType() OVERRIDE; 123 virtual ExitType GetLastSessionExitType() OVERRIDE;
123 124
124 private: 125 private:
125 std::string name_; 126 std::string name_;
126 base::FilePath path_; 127 base::FilePath path_;
127 }; 128 };
128 129
129 #endif // CHROME_BROWSER_UI_APP_LIST_TEST_FAKE_PROFILE_H_ 130 #endif // CHROME_BROWSER_UI_APP_LIST_TEST_FAKE_PROFILE_H_
OLDNEW
« no previous file with comments | « chrome/browser/profiles/profile_io_data.cc ('k') | chrome/browser/ui/app_list/test/fake_profile.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698