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

Side by Side Diff: chrome/browser/chrome_content_browser_client.h

Issue 2888153002: Add TimeToScrollUpdateSwapBegin2 to UKM (Closed)
Patch Set: Rename the test function Created 3 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
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_CHROME_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 GetReceiverPresentationServiceDelegate( 306 GetReceiverPresentationServiceDelegate(
307 content::WebContents* web_contents) override; 307 content::WebContents* web_contents) override;
308 void RecordURLMetric(const std::string& metric, const GURL& url) override; 308 void RecordURLMetric(const std::string& metric, const GURL& url) override;
309 std::vector<std::unique_ptr<content::NavigationThrottle>> 309 std::vector<std::unique_ptr<content::NavigationThrottle>>
310 CreateThrottlesForNavigation(content::NavigationHandle* handle) override; 310 CreateThrottlesForNavigation(content::NavigationHandle* handle) override;
311 std::unique_ptr<content::NavigationUIData> GetNavigationUIData( 311 std::unique_ptr<content::NavigationUIData> GetNavigationUIData(
312 content::NavigationHandle* navigation_handle) override; 312 content::NavigationHandle* navigation_handle) override;
313 std::unique_ptr<content::MemoryCoordinatorDelegate> 313 std::unique_ptr<content::MemoryCoordinatorDelegate>
314 GetMemoryCoordinatorDelegate() override; 314 GetMemoryCoordinatorDelegate() override;
315 ::rappor::RapporService* GetRapporService() override; 315 ::rappor::RapporService* GetRapporService() override;
316 ::ukm::UkmRecorder* GetUkmRecorder() override;
317 316
318 #if BUILDFLAG(ENABLE_MEDIA_REMOTING) 317 #if BUILDFLAG(ENABLE_MEDIA_REMOTING)
319 void CreateMediaRemoter(content::RenderFrameHost* render_frame_host, 318 void CreateMediaRemoter(content::RenderFrameHost* render_frame_host,
320 media::mojom::RemotingSourcePtr source, 319 media::mojom::RemotingSourcePtr source,
321 media::mojom::RemoterRequest request) final; 320 media::mojom::RemoterRequest request) final;
322 #endif // BUILDFLAG(ENABLE_MEDIA_REMOTING) 321 #endif // BUILDFLAG(ENABLE_MEDIA_REMOTING)
323 322
324 std::unique_ptr<base::TaskScheduler::InitParams> GetTaskSchedulerInitParams() 323 std::unique_ptr<base::TaskScheduler::InitParams> GetTaskSchedulerInitParams()
325 override; 324 override;
326 void PerformExperimentalTaskSchedulerRedirections() override; 325 void PerformExperimentalTaskSchedulerRedirections() override;
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 std::vector<ChromeContentBrowserClientParts*> extra_parts_; 379 std::vector<ChromeContentBrowserClientParts*> extra_parts_;
381 380
382 service_manager::BinderRegistry gpu_binder_registry_; 381 service_manager::BinderRegistry gpu_binder_registry_;
383 382
384 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; 383 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_;
385 384
386 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); 385 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient);
387 }; 386 };
388 387
389 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 388 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698