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

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

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 25 matching lines...) Expand all
36 #include "sky/engine/platform/weborigin/KURL.h" 36 #include "sky/engine/platform/weborigin/KURL.h"
37 #include "sky/engine/public/platform/WebColor.h" 37 #include "sky/engine/public/platform/WebColor.h"
38 #include "sky/engine/public/web/WebNavigationPolicy.h" 38 #include "sky/engine/public/web/WebNavigationPolicy.h"
39 #include "sky/engine/wtf/PassOwnPtr.h" 39 #include "sky/engine/wtf/PassOwnPtr.h"
40 40
41 namespace blink { 41 namespace blink {
42 class ColorChooser; 42 class ColorChooser;
43 class ColorChooserClient; 43 class ColorChooserClient;
44 class Element; 44 class Element;
45 class Event; 45 class Event;
46 class GraphicsLayerFactory;
47 class KeyboardEvent; 46 class KeyboardEvent;
48 class RenderBox; 47 class RenderBox;
49 class DateTimeChooser; 48 class DateTimeChooser;
50 class DateTimeChooserClient; 49 class DateTimeChooserClient;
51 class WebViewImpl; 50 class WebViewImpl;
52 struct WebCursorInfo; 51 struct WebCursorInfo;
53 52
54 // Handles window-level notifications from WebCore on behalf of a WebView. 53 // Handles window-level notifications from WebCore on behalf of a WebView.
55 class ChromeClientImpl final : public ChromeClient { 54 class ChromeClientImpl final : public ChromeClient {
56 public: 55 public:
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 void setCursor(const WebCursorInfo&); 108 void setCursor(const WebCursorInfo&);
110 109
111 WebViewImpl* m_webView; // weak pointer 110 WebViewImpl* m_webView; // weak pointer
112 }; 111 };
113 112
114 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient Impl(), client.isChromeClientImpl()); 113 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient Impl(), client.isChromeClientImpl());
115 114
116 } // namespace blink 115 } // namespace blink
117 116
118 #endif // SKY_ENGINE_WEB_CHROMECLIENTIMPL_H_ 117 #endif // SKY_ENGINE_WEB_CHROMECLIENTIMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698