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

Side by Side Diff: Source/core/testing/Internals.cpp

Issue 300223009: Implement basic parts of hit regions on canvas2d. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: exclude clipping region part Created 6 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2013 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 #include "core/frame/EventHandlerRegistry.h" 72 #include "core/frame/EventHandlerRegistry.h"
73 #include "core/frame/FrameView.h" 73 #include "core/frame/FrameView.h"
74 #include "core/frame/LocalFrame.h" 74 #include "core/frame/LocalFrame.h"
75 #include "core/frame/Settings.h" 75 #include "core/frame/Settings.h"
76 #include "core/html/HTMLContentElement.h" 76 #include "core/html/HTMLContentElement.h"
77 #include "core/html/HTMLIFrameElement.h" 77 #include "core/html/HTMLIFrameElement.h"
78 #include "core/html/HTMLInputElement.h" 78 #include "core/html/HTMLInputElement.h"
79 #include "core/html/HTMLMediaElement.h" 79 #include "core/html/HTMLMediaElement.h"
80 #include "core/html/HTMLSelectElement.h" 80 #include "core/html/HTMLSelectElement.h"
81 #include "core/html/HTMLTextAreaElement.h" 81 #include "core/html/HTMLTextAreaElement.h"
82 #include "core/html/canvas/CanvasRenderingContext2D.h"
82 #include "core/html/forms/FormController.h" 83 #include "core/html/forms/FormController.h"
83 #include "core/html/shadow/ShadowElementNames.h" 84 #include "core/html/shadow/ShadowElementNames.h"
84 #include "core/html/shadow/TextControlInnerElements.h" 85 #include "core/html/shadow/TextControlInnerElements.h"
85 #include "core/inspector/InspectorClient.h" 86 #include "core/inspector/InspectorClient.h"
86 #include "core/inspector/InspectorConsoleAgent.h" 87 #include "core/inspector/InspectorConsoleAgent.h"
87 #include "core/inspector/InspectorController.h" 88 #include "core/inspector/InspectorController.h"
88 #include "core/inspector/InspectorCounters.h" 89 #include "core/inspector/InspectorCounters.h"
89 #include "core/inspector/InspectorFrontendChannel.h" 90 #include "core/inspector/InspectorFrontendChannel.h"
90 #include "core/inspector/InspectorInstrumentation.h" 91 #include "core/inspector/InspectorInstrumentation.h"
91 #include "core/inspector/InspectorOverlay.h" 92 #include "core/inspector/InspectorOverlay.h"
(...skipping 2280 matching lines...) Expand 10 before | Expand all | Expand 10 after
2372 webtype = blink::ConnectionTypeOther; 2373 webtype = blink::ConnectionTypeOther;
2373 } else if (type == "none") { 2374 } else if (type == "none") {
2374 webtype = blink::ConnectionTypeNone; 2375 webtype = blink::ConnectionTypeNone;
2375 } else { 2376 } else {
2376 exceptionState.throwDOMException(NotFoundError, ExceptionMessages::faile dToEnumerate("connection type", type)); 2377 exceptionState.throwDOMException(NotFoundError, ExceptionMessages::faile dToEnumerate("connection type", type));
2377 return; 2378 return;
2378 } 2379 }
2379 networkStateNotifier().setWebConnectionTypeForTest(webtype); 2380 networkStateNotifier().setWebConnectionTypeForTest(webtype);
2380 } 2381 }
2381 2382
2383 unsigned Internals::countHitRegions(CanvasRenderingContext2D* context)
2384 {
2385 return context->hitRegionsCount();
2386 }
2387
2382 } // namespace WebCore 2388 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698