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

Side by Side Diff: sky/engine/web/ChromeClientImpl.cpp

Issue 762993003: Remove GraphicsLayer family of classes. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
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 are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 #include "sky/engine/core/frame/FrameView.h" 43 #include "sky/engine/core/frame/FrameView.h"
44 #include "sky/engine/core/frame/Settings.h" 44 #include "sky/engine/core/frame/Settings.h"
45 #include "sky/engine/core/page/Page.h" 45 #include "sky/engine/core/page/Page.h"
46 #include "sky/engine/core/rendering/HitTestResult.h" 46 #include "sky/engine/core/rendering/HitTestResult.h"
47 #include "sky/engine/platform/Cursor.h" 47 #include "sky/engine/platform/Cursor.h"
48 #include "sky/engine/platform/NotImplemented.h" 48 #include "sky/engine/platform/NotImplemented.h"
49 #include "sky/engine/platform/PlatformScreen.h" 49 #include "sky/engine/platform/PlatformScreen.h"
50 #include "sky/engine/platform/exported/WrappedResourceRequest.h" 50 #include "sky/engine/platform/exported/WrappedResourceRequest.h"
51 #include "sky/engine/platform/geometry/FloatRect.h" 51 #include "sky/engine/platform/geometry/FloatRect.h"
52 #include "sky/engine/platform/geometry/IntRect.h" 52 #include "sky/engine/platform/geometry/IntRect.h"
53 #include "sky/engine/platform/graphics/GraphicsLayer.h"
54 #include "sky/engine/public/platform/Platform.h" 53 #include "sky/engine/public/platform/Platform.h"
55 #include "sky/engine/public/platform/WebCursorInfo.h" 54 #include "sky/engine/public/platform/WebCursorInfo.h"
56 #include "sky/engine/public/platform/WebRect.h" 55 #include "sky/engine/public/platform/WebRect.h"
57 #include "sky/engine/public/platform/WebURLRequest.h" 56 #include "sky/engine/public/platform/WebURLRequest.h"
58 #include "sky/engine/public/web/Sky.h" 57 #include "sky/engine/public/web/Sky.h"
59 #include "sky/engine/public/web/WebConsoleMessage.h" 58 #include "sky/engine/public/web/WebConsoleMessage.h"
60 #include "sky/engine/public/web/WebFrameClient.h" 59 #include "sky/engine/public/web/WebFrameClient.h"
61 #include "sky/engine/public/web/WebInputEvent.h" 60 #include "sky/engine/public/web/WebInputEvent.h"
62 #include "sky/engine/public/web/WebNode.h" 61 #include "sky/engine/public/web/WebNode.h"
63 #include "sky/engine/public/web/WebSettings.h" 62 #include "sky/engine/public/web/WebSettings.h"
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 webFrame->client()->forwardInputEvent(&webEvent); 388 webFrame->client()->forwardInputEvent(&webEvent);
390 } else if (event->isWheelEvent()) { 389 } else if (event->isWheelEvent()) {
391 WebMouseWheelEventBuilder webEvent(webFrame->frameView(), 0, *static_cas t<WheelEvent*>(event)); 390 WebMouseWheelEventBuilder webEvent(webFrame->frameView(), 0, *static_cas t<WheelEvent*>(event));
392 if (webEvent.type == WebInputEvent::Undefined) 391 if (webEvent.type == WebInputEvent::Undefined)
393 return; 392 return;
394 webFrame->client()->forwardInputEvent(&webEvent); 393 webFrame->client()->forwardInputEvent(&webEvent);
395 } 394 }
396 } 395 }
397 396
398 } // namespace blink 397 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698