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

Side by Side Diff: Source/web/WebViewImpl.h

Issue 19804008: Add a Blink API to set window features on a WebView. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/page/CreateWindow.cpp ('k') | Source/web/WebViewImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 virtual void setPageEncoding(const WebString& encoding); 198 virtual void setPageEncoding(const WebString& encoding);
199 virtual bool isTransparent() const; 199 virtual bool isTransparent() const;
200 virtual void setIsTransparent(bool value); 200 virtual void setIsTransparent(bool value);
201 virtual bool tabsToLinks() const; 201 virtual bool tabsToLinks() const;
202 virtual void setTabsToLinks(bool value); 202 virtual void setTabsToLinks(bool value);
203 virtual bool tabKeyCyclesThroughElements() const; 203 virtual bool tabKeyCyclesThroughElements() const;
204 virtual void setTabKeyCyclesThroughElements(bool value); 204 virtual void setTabKeyCyclesThroughElements(bool value);
205 virtual bool isActive() const; 205 virtual bool isActive() const;
206 virtual void setIsActive(bool value); 206 virtual void setIsActive(bool value);
207 virtual void setDomainRelaxationForbidden(bool, const WebString& scheme); 207 virtual void setDomainRelaxationForbidden(bool, const WebString& scheme);
208 virtual void setWindowFeatures(const WebWindowFeatures&);
208 virtual bool dispatchBeforeUnloadEvent(); 209 virtual bool dispatchBeforeUnloadEvent();
209 virtual void dispatchUnloadEvent(); 210 virtual void dispatchUnloadEvent();
210 virtual WebFrame* mainFrame(); 211 virtual WebFrame* mainFrame();
211 virtual WebFrame* findFrameByName( 212 virtual WebFrame* findFrameByName(
212 const WebString& name, WebFrame* relativeToFrame); 213 const WebString& name, WebFrame* relativeToFrame);
213 virtual WebFrame* focusedFrame(); 214 virtual WebFrame* focusedFrame();
214 virtual void setFocusedFrame(WebFrame* frame); 215 virtual void setFocusedFrame(WebFrame* frame);
215 virtual void setInitialFocus(bool reverse); 216 virtual void setInitialFocus(bool reverse);
216 virtual void clearFocusedNode(); 217 virtual void clearFocusedNode();
217 virtual void scrollFocusedNodeIntoView(); 218 virtual void scrollFocusedNodeIntoView();
(...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after
831 bool m_showFPSCounter; 832 bool m_showFPSCounter;
832 bool m_showPaintRects; 833 bool m_showPaintRects;
833 bool m_showDebugBorders; 834 bool m_showDebugBorders;
834 bool m_continuousPaintingEnabled; 835 bool m_continuousPaintingEnabled;
835 bool m_showScrollBottleneckRects; 836 bool m_showScrollBottleneckRects;
836 }; 837 };
837 838
838 } // namespace WebKit 839 } // namespace WebKit
839 840
840 #endif 841 #endif
OLDNEW
« no previous file with comments | « Source/core/page/CreateWindow.cpp ('k') | Source/web/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698