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

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

Issue 211013: Introduce WebKit::WebSecurityOrigin as a wrapper around... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 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/glue/glue_util.cc ('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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 virtual WebKit::WebFrame* firstChild() const; 83 virtual WebKit::WebFrame* firstChild() const;
84 virtual WebKit::WebFrame* lastChild() const; 84 virtual WebKit::WebFrame* lastChild() const;
85 virtual WebKit::WebFrame* nextSibling() const; 85 virtual WebKit::WebFrame* nextSibling() const;
86 virtual WebKit::WebFrame* previousSibling() const; 86 virtual WebKit::WebFrame* previousSibling() const;
87 virtual WebKit::WebFrame* traverseNext(bool wrap) const; 87 virtual WebKit::WebFrame* traverseNext(bool wrap) const;
88 virtual WebKit::WebFrame* traversePrevious(bool wrap) const; 88 virtual WebKit::WebFrame* traversePrevious(bool wrap) const;
89 virtual WebKit::WebFrame* findChildByName(const WebKit::WebString& name) const ; 89 virtual WebKit::WebFrame* findChildByName(const WebKit::WebString& name) const ;
90 virtual WebKit::WebFrame* findChildByExpression( 90 virtual WebKit::WebFrame* findChildByExpression(
91 const WebKit::WebString& xpath) const; 91 const WebKit::WebString& xpath) const;
92 virtual void forms(WebKit::WebVector<WebKit::WebForm>&) const; 92 virtual void forms(WebKit::WebVector<WebKit::WebForm>&) const;
93 virtual WebKit::WebString securityOrigin() const; 93 virtual WebKit::WebSecurityOrigin securityOrigin() const;
94 virtual void grantUniversalAccess(); 94 virtual void grantUniversalAccess();
95 virtual NPObject* windowObject() const; 95 virtual NPObject* windowObject() const;
96 virtual void bindToWindowObject( 96 virtual void bindToWindowObject(
97 const WebKit::WebString& name, NPObject* object); 97 const WebKit::WebString& name, NPObject* object);
98 virtual void executeScript(const WebKit::WebScriptSource&); 98 virtual void executeScript(const WebKit::WebScriptSource&);
99 virtual void executeScriptInNewContext( 99 virtual void executeScriptInNewContext(
100 const WebKit::WebScriptSource* sources, unsigned num_sources, 100 const WebKit::WebScriptSource* sources, unsigned num_sources,
101 int extension_group); 101 int extension_group);
102 virtual void executeScriptInNewWorld( 102 virtual void executeScriptInNewWorld(
103 const WebKit::WebScriptSource* sources, unsigned num_sources, 103 const WebKit::WebScriptSource* sources, unsigned num_sources,
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 // The input fields that are interested in edit events and their associated 366 // The input fields that are interested in edit events and their associated
367 // listeners. 367 // listeners.
368 typedef HashMap<RefPtr<WebCore::HTMLInputElement>, 368 typedef HashMap<RefPtr<WebCore::HTMLInputElement>,
369 webkit_glue::PasswordAutocompleteListener*> PasswordListenerMap; 369 webkit_glue::PasswordAutocompleteListener*> PasswordListenerMap;
370 PasswordListenerMap password_listeners_; 370 PasswordListenerMap password_listeners_;
371 371
372 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl); 372 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl);
373 }; 373 };
374 374
375 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ 375 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_
OLDNEW
« no previous file with comments | « webkit/glue/glue_util.cc ('k') | webkit/glue/webframe_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698