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

Side by Side Diff: Source/web/tests/WebFrameTest.cpp

Issue 99103006: Moving GraphicsContext and dependencies from core to platform. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final patch - fixes Android Created 7 years 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 | « Source/web/tests/WEBPImageDecoderTest.cpp ('k') | Source/web/web.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 #include "core/editing/Editor.h" 64 #include "core/editing/Editor.h"
65 #include "core/editing/FrameSelection.h" 65 #include "core/editing/FrameSelection.h"
66 #include "core/editing/SpellChecker.h" 66 #include "core/editing/SpellChecker.h"
67 #include "core/editing/VisiblePosition.h" 67 #include "core/editing/VisiblePosition.h"
68 #include "core/html/HTMLFormElement.h" 68 #include "core/html/HTMLFormElement.h"
69 #include "core/loader/FrameLoadRequest.h" 69 #include "core/loader/FrameLoadRequest.h"
70 #include "core/page/EventHandler.h" 70 #include "core/page/EventHandler.h"
71 #include "core/frame/Frame.h" 71 #include "core/frame/Frame.h"
72 #include "core/frame/FrameView.h" 72 #include "core/frame/FrameView.h"
73 #include "core/page/Settings.h" 73 #include "core/page/Settings.h"
74 #include "core/platform/ScrollbarTheme.h"
75 #include "core/rendering/HitTestResult.h" 74 #include "core/rendering/HitTestResult.h"
76 #include "core/rendering/RenderLayerCompositor.h" 75 #include "core/rendering/RenderLayerCompositor.h"
77 #include "core/rendering/RenderView.h" 76 #include "core/rendering/RenderView.h"
78 #include "core/rendering/TextAutosizer.h" 77 #include "core/rendering/TextAutosizer.h"
79 #include "platform/geometry/FloatRect.h" 78 #include "platform/geometry/FloatRect.h"
80 #include "platform/network/ResourceError.h" 79 #include "platform/network/ResourceError.h"
80 #include "platform/scroll/ScrollbarTheme.h"
81 #include "v8.h" 81 #include "v8.h"
82 #include "public/platform/Platform.h" 82 #include "public/platform/Platform.h"
83 #include "public/platform/WebFloatRect.h" 83 #include "public/platform/WebFloatRect.h"
84 #include "public/platform/WebThread.h" 84 #include "public/platform/WebThread.h"
85 #include "public/platform/WebURL.h" 85 #include "public/platform/WebURL.h"
86 #include "public/platform/WebURLResponse.h" 86 #include "public/platform/WebURLResponse.h"
87 #include "public/platform/WebUnitTestSupport.h" 87 #include "public/platform/WebUnitTestSupport.h"
88 #include "wtf/dtoa/utils.h" 88 #include "wtf/dtoa/utils.h"
89 #include "wtf/Forward.h" 89 #include "wtf/Forward.h"
90 #include <map> 90 #include <map>
(...skipping 4799 matching lines...) Expand 10 before | Expand all | Expand 10 after
4890 4890
4891 FrameTestHelpers::loadFrame(frame, 4891 FrameTestHelpers::loadFrame(frame,
4892 "javascript:window.frames[1].location.assign('" + m_baseURL + "find.html ')"); 4892 "javascript:window.frames[1].location.assign('" + m_baseURL + "find.html ')");
4893 runPendingTasks(); 4893 runPendingTasks();
4894 Platform::current()->unitTestSupport()->serveAsynchronousMockedRequests(); 4894 Platform::current()->unitTestSupport()->serveAsynchronousMockedRequests();
4895 EXPECT_EQ(client.frame(), iframe); 4895 EXPECT_EQ(client.frame(), iframe);
4896 EXPECT_FALSE(client.replacesCurrentHistoryItem()); 4896 EXPECT_FALSE(client.replacesCurrentHistoryItem());
4897 } 4897 }
4898 4898
4899 } // namespace 4899 } // namespace
OLDNEW
« no previous file with comments | « Source/web/tests/WEBPImageDecoderTest.cpp ('k') | Source/web/web.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698