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

Side by Side Diff: content/test/frame_load_waiter.h

Issue 251903006: Attempt 2 to enable async data: URL loading. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix translation tests Created 6 years, 7 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
« no previous file with comments | « content/renderer/render_view_browsertest.cc ('k') | content/test/frame_load_waiter.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_TEST_FRAME_LOAD_WAITER_H_
6 #define CONTENT_TEST_FRAME_LOAD_WAITER_H_
7
8 #include "base/macros.h"
9 #include "base/run_loop.h"
10 #include "content/public/renderer/render_frame_observer.h"
11
12 namespace content {
13
14 // Helper class to spin the run loop when waiting for a frame load to complete.
15 // Blink uses a threaded HTML parser, so it's no longer sufficient to just spin
16 // the run loop once to process all pending messages.
17 class FrameLoadWaiter : public RenderFrameObserver {
18 public:
19 explicit FrameLoadWaiter(RenderFrame* frame);
20 void Wait();
21
22 private:
23 virtual void DidFinishLoad() OVERRIDE;
24
25 base::RunLoop run_loop_;
26
27 DISALLOW_COPY_AND_ASSIGN(FrameLoadWaiter);
28 };
29
30 } // namespace content
31
32 #endif // CONTENT_TEST_FRAME_LOAD_WAITER_H_
OLDNEW
« no previous file with comments | « content/renderer/render_view_browsertest.cc ('k') | content/test/frame_load_waiter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698