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

Side by Side Diff: public/web/WebLocalFrame.h

Issue 776693002: Clean forward declaration in public (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix fakewebplugin 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
« no previous file with comments | « public/web/WebFrameClient.h ('k') | public/web/WebPermissionClient.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef WebLocalFrame_h 5 #ifndef WebLocalFrame_h
6 #define WebLocalFrame_h 6 #define WebLocalFrame_h
7 7
8 #include "WebFrame.h" 8 #include "WebFrame.h"
9 9
10 namespace blink { 10 namespace blink {
11 11
12 class WebAutofillClient; 12 class WebAutofillClient;
13 class WebFrameClient;
13 class WebScriptExecutionCallback; 14 class WebScriptExecutionCallback;
14 struct WebPrintPresetOptions; 15 struct WebPrintPresetOptions;
15 16
16 // Interface for interacting with in process frames. This contains methods that 17 // Interface for interacting with in process frames. This contains methods that
17 // require interacting with a frame's document. 18 // require interacting with a frame's document.
18 // FIXME: Move lots of methods from WebFrame in here. 19 // FIXME: Move lots of methods from WebFrame in here.
19 class WebLocalFrame : public WebFrame { 20 class WebLocalFrame : public WebFrame {
20 public: 21 public:
21 // Creates a WebFrame. Delete this WebFrame by calling WebFrame::close(). 22 // Creates a WebFrame. Delete this WebFrame by calling WebFrame::close().
22 // It is valid to pass a null client pointer. 23 // It is valid to pass a null client pointer.
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 106
106 // Moves the selection extent point. This function does not allow the 107 // Moves the selection extent point. This function does not allow the
107 // selection to collapse. If the new extent is set to the same position as 108 // selection to collapse. If the new extent is set to the same position as
108 // the current base, this function will do nothing. 109 // the current base, this function will do nothing.
109 virtual void moveRangeSelectionExtent(const WebPoint&) = 0; 110 virtual void moveRangeSelectionExtent(const WebPoint&) = 0;
110 }; 111 };
111 112
112 } // namespace blink 113 } // namespace blink
113 114
114 #endif // WebLocalFrame_h 115 #endif // WebLocalFrame_h
OLDNEW
« no previous file with comments | « public/web/WebFrameClient.h ('k') | public/web/WebPermissionClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698