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

Side by Side Diff: content/browser/site_per_process_browsertest.cc

Issue 2783973002: Moving LatencyInfo into a separate component. (Closed)
Patch Set: Rebase again Created 3 years, 8 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
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 #include "content/browser/site_per_process_browsertest.h" 5 #include "content/browser/site_per_process_browsertest.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <algorithm> 10 #include <algorithm>
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 #include "testing/gtest/include/gtest/gtest.h" 78 #include "testing/gtest/include/gtest/gtest.h"
79 #include "third_party/WebKit/public/platform/WebFeaturePolicy.h" 79 #include "third_party/WebKit/public/platform/WebFeaturePolicy.h"
80 #include "third_party/WebKit/public/platform/WebInputEvent.h" 80 #include "third_party/WebKit/public/platform/WebInputEvent.h"
81 #include "third_party/WebKit/public/platform/WebInsecureRequestPolicy.h" 81 #include "third_party/WebKit/public/platform/WebInsecureRequestPolicy.h"
82 #include "third_party/WebKit/public/web/WebSandboxFlags.h" 82 #include "third_party/WebKit/public/web/WebSandboxFlags.h"
83 #include "ui/display/display_switches.h" 83 #include "ui/display/display_switches.h"
84 #include "ui/display/screen.h" 84 #include "ui/display/screen.h"
85 #include "ui/events/base_event_utils.h" 85 #include "ui/events/base_event_utils.h"
86 #include "ui/events/event.h" 86 #include "ui/events/event.h"
87 #include "ui/events/event_utils.h" 87 #include "ui/events/event_utils.h"
88 #include "ui/events/latency_info.h"
89 #include "ui/gfx/geometry/point.h" 88 #include "ui/gfx/geometry/point.h"
89 #include "ui/latency/latency_info.h"
90 #include "ui/native_theme/native_theme_switches.h" 90 #include "ui/native_theme/native_theme_switches.h"
91 91
92 #if defined(USE_AURA) 92 #if defined(USE_AURA)
93 #include "content/browser/renderer_host/render_widget_host_view_aura.h" 93 #include "content/browser/renderer_host/render_widget_host_view_aura.h"
94 #endif 94 #endif
95 95
96 #if defined(OS_MACOSX) 96 #if defined(OS_MACOSX)
97 #include "ui/base/test/scoped_preferred_scroller_style_mac.h" 97 #include "ui/base/test/scoped_preferred_scroller_style_mac.h"
98 #endif 98 #endif
99 99
(...skipping 9895 matching lines...) Expand 10 before | Expand all | Expand 10 after
9995 names.insert(root->children[0]->frame_entry->frame_unique_name()); 9995 names.insert(root->children[0]->frame_entry->frame_unique_name());
9996 } 9996 }
9997 9997
9998 // More than one entry in the set means that the subframe frame navigation 9998 // More than one entry in the set means that the subframe frame navigation
9999 // entries didn't have a consistent unique name. This will break history 9999 // entries didn't have a consistent unique name. This will break history
10000 // navigations =( 10000 // navigations =(
10001 EXPECT_THAT(names, SizeIs(1)) << "Mismatched names for subframe!"; 10001 EXPECT_THAT(names, SizeIs(1)) << "Mismatched names for subframe!";
10002 } 10002 }
10003 10003
10004 } // namespace content 10004 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_mac_unittest.mm ('k') | content/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698