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

Side by Side Diff: webkit/glue/webframe_impl.h

Issue 284015: Swaps renderer processes on links with rel=noreferrer and target=_blank.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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 | Annotate | Revision Log
« no previous file with comments | « webkit/api/public/WebFrame.h ('k') | webkit/glue/webframe_impl.cc » ('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) 2006 Apple Computer, Inc. All rights reserved. 2 * Copyright (C) 2006 Apple Computer, 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 virtual WebKit::WebHistoryItem previousHistoryItem() const; 126 virtual WebKit::WebHistoryItem previousHistoryItem() const;
127 virtual WebKit::WebHistoryItem currentHistoryItem() const; 127 virtual WebKit::WebHistoryItem currentHistoryItem() const;
128 virtual void enableViewSourceMode(bool enable); 128 virtual void enableViewSourceMode(bool enable);
129 virtual bool isViewSourceModeEnabled() const; 129 virtual bool isViewSourceModeEnabled() const;
130 virtual void setReferrerForRequest( 130 virtual void setReferrerForRequest(
131 WebKit::WebURLRequest& request, const WebKit::WebURL& referrer); 131 WebKit::WebURLRequest& request, const WebKit::WebURL& referrer);
132 virtual void dispatchWillSendRequest(WebKit::WebURLRequest& request); 132 virtual void dispatchWillSendRequest(WebKit::WebURLRequest& request);
133 virtual void commitDocumentData(const char* data, size_t length); 133 virtual void commitDocumentData(const char* data, size_t length);
134 virtual unsigned unloadListenerCount() const; 134 virtual unsigned unloadListenerCount() const;
135 virtual bool isProcessingUserGesture() const; 135 virtual bool isProcessingUserGesture() const;
136 virtual bool willSuppressOpenerInNewFrame() const;
136 virtual void replaceSelection(const WebKit::WebString& text); 137 virtual void replaceSelection(const WebKit::WebString& text);
137 virtual void insertText(const WebKit::WebString& text); 138 virtual void insertText(const WebKit::WebString& text);
138 virtual void setMarkedText( 139 virtual void setMarkedText(
139 const WebKit::WebString& text, unsigned location, unsigned length); 140 const WebKit::WebString& text, unsigned location, unsigned length);
140 virtual void unmarkText(); 141 virtual void unmarkText();
141 virtual bool hasMarkedText() const; 142 virtual bool hasMarkedText() const;
142 virtual WebKit::WebRange markedRange() const; 143 virtual WebKit::WebRange markedRange() const;
143 virtual bool executeCommand(const WebKit::WebString& command); 144 virtual bool executeCommand(const WebKit::WebString& command);
144 virtual bool executeCommand( 145 virtual bool executeCommand(
145 const WebKit::WebString& command, const WebKit::WebString& value); 146 const WebKit::WebString& command, const WebKit::WebString& value);
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 // The input fields that are interested in edit events and their associated 384 // The input fields that are interested in edit events and their associated
384 // listeners. 385 // listeners.
385 typedef HashMap<RefPtr<WebCore::HTMLInputElement>, 386 typedef HashMap<RefPtr<WebCore::HTMLInputElement>,
386 webkit_glue::PasswordAutocompleteListener*> PasswordListenerMap; 387 webkit_glue::PasswordAutocompleteListener*> PasswordListenerMap;
387 PasswordListenerMap password_listeners_; 388 PasswordListenerMap password_listeners_;
388 389
389 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl); 390 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl);
390 }; 391 };
391 392
392 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ 393 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_
OLDNEW
« no previous file with comments | « webkit/api/public/WebFrame.h ('k') | webkit/glue/webframe_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698