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

Side by Side Diff: content/browser/browser_plugin/browser_plugin_embedder.h

Issue 633553002: Replace OVERRIDE and FINAL with override and final in content/browser/browser_plugin/[a-s]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « no previous file | content/browser/browser_plugin/browser_plugin_guest.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // A BrowserPluginEmbedder handles messages coming from a BrowserPlugin's 5 // A BrowserPluginEmbedder handles messages coming from a BrowserPlugin's
6 // embedder that are not directed at any particular existing guest process. 6 // embedder that are not directed at any particular existing guest process.
7 // In the beginning, when a BrowserPlugin instance in the embedder renderer 7 // In the beginning, when a BrowserPlugin instance in the embedder renderer
8 // process requests an initial navigation, the WebContents for that renderer 8 // process requests an initial navigation, the WebContents for that renderer
9 // renderer creates a BrowserPluginEmbedder for itself. The 9 // renderer creates a BrowserPluginEmbedder for itself. The
10 // BrowserPluginEmbedder, in turn, forwards the requests to a 10 // BrowserPluginEmbedder, in turn, forwards the requests to a
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 43
44 static BrowserPluginEmbedder* Create(WebContentsImpl* web_contents); 44 static BrowserPluginEmbedder* Create(WebContentsImpl* web_contents);
45 45
46 // Returns this embedder's WebContentsImpl. 46 // Returns this embedder's WebContentsImpl.
47 WebContentsImpl* GetWebContents() const; 47 WebContentsImpl* GetWebContents() const;
48 48
49 // Called when embedder's |rwh| has sent screen rects to renderer. 49 // Called when embedder's |rwh| has sent screen rects to renderer.
50 void DidSendScreenRects(); 50 void DidSendScreenRects();
51 51
52 // WebContentsObserver implementation. 52 // WebContentsObserver implementation.
53 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; 53 virtual bool OnMessageReceived(const IPC::Message& message) override;
54 54
55 void DragSourceEndedAt(int client_x, int client_y, int screen_x, 55 void DragSourceEndedAt(int client_x, int client_y, int screen_x,
56 int screen_y, blink::WebDragOperation operation); 56 int screen_y, blink::WebDragOperation operation);
57 57
58 void OnUpdateDragCursor(bool* handled); 58 void OnUpdateDragCursor(bool* handled);
59 59
60 void DragEnteredGuest(BrowserPluginGuest* guest); 60 void DragEnteredGuest(BrowserPluginGuest* guest);
61 61
62 void DragLeftGuest(BrowserPluginGuest* guest); 62 void DragLeftGuest(BrowserPluginGuest* guest);
63 63
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 bool guest_drag_ending_; 105 bool guest_drag_ending_;
106 106
107 base::WeakPtrFactory<BrowserPluginEmbedder> weak_ptr_factory_; 107 base::WeakPtrFactory<BrowserPluginEmbedder> weak_ptr_factory_;
108 108
109 DISALLOW_COPY_AND_ASSIGN(BrowserPluginEmbedder); 109 DISALLOW_COPY_AND_ASSIGN(BrowserPluginEmbedder);
110 }; 110 };
111 111
112 } // namespace content 112 } // namespace content
113 113
114 #endif // CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_EMBEDDER_H_ 114 #endif // CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_EMBEDDER_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/browser_plugin/browser_plugin_guest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698