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

Side by Side Diff: Source/core/plugins/PluginView.h

Issue 1111173002: Removing blink::prefix (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Incorporating Review Comments Created 5 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2013 Google Inc. All rights reserved. 3 * Copyright (C) 2013 Google Inc. All rights reserved.
4 * Copyright (C) 2014 Opera Software ASA. All rights reserved. 4 * Copyright (C) 2014 Opera Software ASA. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
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 25 matching lines...) Expand all
36 36
37 namespace blink { 37 namespace blink {
38 38
39 class ResourceError; 39 class ResourceError;
40 class ResourceResponse; 40 class ResourceResponse;
41 41
42 class PluginView : public Widget { 42 class PluginView : public Widget {
43 public: 43 public:
44 virtual bool isPluginView() const override final { return true; } 44 virtual bool isPluginView() const override final { return true; }
45 45
46 virtual blink::WebLayer* platformLayer() const { return 0; } 46 virtual WebLayer* platformLayer() const { return 0; }
47 virtual v8::Local<v8::Object> scriptableObject(v8::Isolate*) { return v8::Lo cal<v8::Object>(); } 47 virtual v8::Local<v8::Object> scriptableObject(v8::Isolate*) { return v8::Lo cal<v8::Object>(); }
48 virtual bool getFormValue(String&) { return false; } 48 virtual bool getFormValue(String&) { return false; }
49 virtual bool wantsWheelEvents() { return false; } 49 virtual bool wantsWheelEvents() { return false; }
50 virtual bool supportsKeyboardFocus() const { return false; } 50 virtual bool supportsKeyboardFocus() const { return false; }
51 virtual bool supportsInputMethod() const { return false; } 51 virtual bool supportsInputMethod() const { return false; }
52 virtual bool canProcessDrag() const { return false; } 52 virtual bool canProcessDrag() const { return false; }
53 53
54 virtual void didReceiveResponse(const ResourceResponse&) { } 54 virtual void didReceiveResponse(const ResourceResponse&) { }
55 virtual void didReceiveData(const char*, int) { } 55 virtual void didReceiveData(const char*, int) { }
56 virtual void didFinishLoading() { } 56 virtual void didFinishLoading() { }
57 virtual void didFailLoading(const ResourceError&) { } 57 virtual void didFailLoading(const ResourceError&) { }
58 58
59 virtual void layoutIfNeeded() { } 59 virtual void layoutIfNeeded() { }
60 virtual void invalidatePaintIfNeeded() { } 60 virtual void invalidatePaintIfNeeded() { }
61 61
62 #if ENABLE(OILPAN) 62 #if ENABLE(OILPAN)
63 virtual LocalFrame* pluginFrame() const { return nullptr; } 63 virtual LocalFrame* pluginFrame() const { return nullptr; }
64 virtual void shouldDisposePlugin() { } 64 virtual void shouldDisposePlugin() { }
65 #endif 65 #endif
66 66
67 protected: 67 protected:
68 PluginView() : Widget() { } 68 PluginView() : Widget() { }
69 }; 69 };
70 70
71 DEFINE_TYPE_CASTS(PluginView, Widget, widget, widget->isPluginView(), widget.isP luginView()); 71 DEFINE_TYPE_CASTS(PluginView, Widget, widget, widget->isPluginView(), widget.isP luginView());
72 72
73 } // namespace blink 73 } // namespace blink
74 74
75 #endif // PluginView_h 75 #endif // PluginView_h
OLDNEW
« no previous file with comments | « Source/core/page/scrolling/ScrollingCoordinator.cpp ('k') | Source/core/svg/properties/SVGAnimatedProperty.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698