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

Side by Side Diff: components/html_viewer/html_frame_apptest.cc

Issue 1548113002: Switch to standard integer types in components/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn Created 4 years, 12 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 | « components/html_viewer/html_frame.cc ('k') | components/html_viewer/html_frame_properties.h » ('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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 <stddef.h>
6 #include <stdint.h>
7
5 #include "base/auto_reset.h" 8 #include "base/auto_reset.h"
6 #include "base/bind.h" 9 #include "base/bind.h"
7 #include "base/callback.h" 10 #include "base/callback.h"
8 #include "base/command_line.h" 11 #include "base/command_line.h"
9 #include "base/json/json_reader.h" 12 #include "base/json/json_reader.h"
13 #include "base/macros.h"
10 #include "base/run_loop.h" 14 #include "base/run_loop.h"
11 #include "base/strings/stringprintf.h" 15 #include "base/strings/stringprintf.h"
12 #include "base/test/test_timeouts.h" 16 #include "base/test/test_timeouts.h"
13 #include "base/time/time.h" 17 #include "base/time/time.h"
14 #include "base/values.h" 18 #include "base/values.h"
19 #include "build/build_config.h"
15 #include "components/html_viewer/public/interfaces/test_html_viewer.mojom.h" 20 #include "components/html_viewer/public/interfaces/test_html_viewer.mojom.h"
16 #include "components/mus/public/cpp/tests/window_server_test_base.h" 21 #include "components/mus/public/cpp/tests/window_server_test_base.h"
17 #include "components/mus/public/cpp/window.h" 22 #include "components/mus/public/cpp/window.h"
18 #include "components/mus/public/cpp/window_tree_connection.h" 23 #include "components/mus/public/cpp/window_tree_connection.h"
19 #include "components/web_view/frame.h" 24 #include "components/web_view/frame.h"
20 #include "components/web_view/frame_connection.h" 25 #include "components/web_view/frame_connection.h"
21 #include "components/web_view/frame_tree.h" 26 #include "components/web_view/frame_tree.h"
22 #include "components/web_view/public/interfaces/frame.mojom.h" 27 #include "components/web_view/public/interfaces/frame.mojom.h"
23 #include "components/web_view/test_frame_tree_delegate.h" 28 #include "components/web_view/test_frame_tree_delegate.h"
24 #include "mojo/application/public/cpp/application_impl.h" 29 #include "mojo/application/public/cpp/application_impl.h"
(...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after
485 script_value_as_list->GetString(0u, &message_in_child); 490 script_value_as_list->GetString(0u, &message_in_child);
486 } 491 }
487 } 492 }
488 } while (message_in_child != "hello from parent" && 493 } while (message_in_child != "hello from parent" &&
489 base::TimeTicks::Now() - start_time < 494 base::TimeTicks::Now() - start_time <
490 TestTimeouts::action_timeout()); 495 TestTimeouts::action_timeout());
491 EXPECT_EQ("hello from parent", message_in_child); 496 EXPECT_EQ("hello from parent", message_in_child);
492 } 497 }
493 498
494 } // namespace mojo 499 } // namespace mojo
OLDNEW
« no previous file with comments | « components/html_viewer/html_frame.cc ('k') | components/html_viewer/html_frame_properties.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698