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

Side by Side Diff: sky/engine/public/web/WebDocument.h

Issue 673993002: Remove remaining AX code. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 | « sky/engine/public/web/WebAXObject.h ('k') | sky/engine/public/web/WebFrameClient.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 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 43
44 namespace v8 { 44 namespace v8 {
45 class Value; 45 class Value;
46 template <class T> class Handle; 46 template <class T> class Handle;
47 } 47 }
48 48
49 namespace blink { 49 namespace blink {
50 50
51 class Document; 51 class Document;
52 class DocumentType; 52 class DocumentType;
53 class WebAXObject;
54 class WebDocumentType; 53 class WebDocumentType;
55 class WebElement; 54 class WebElement;
56 class WebString; 55 class WebString;
57 class WebURL; 56 class WebURL;
58 57
59 // Provides readonly access to some properties of a DOM document. 58 // Provides readonly access to some properties of a DOM document.
60 class WebDocument : public WebNode { 59 class WebDocument : public WebNode {
61 public: 60 public:
62 WebDocument() { } 61 WebDocument() { }
63 WebDocument(const WebDocument& e) : WebNode(e) { } 62 WebDocument(const WebDocument& e) : WebNode(e) { }
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 #if BLINK_IMPLEMENTATION 101 #if BLINK_IMPLEMENTATION
103 WebDocument(const PassRefPtrWillBeRawPtr<Document>&); 102 WebDocument(const PassRefPtrWillBeRawPtr<Document>&);
104 WebDocument& operator=(const PassRefPtrWillBeRawPtr<Document>&); 103 WebDocument& operator=(const PassRefPtrWillBeRawPtr<Document>&);
105 operator PassRefPtrWillBeRawPtr<Document>() const; 104 operator PassRefPtrWillBeRawPtr<Document>() const;
106 #endif 105 #endif
107 }; 106 };
108 107
109 } // namespace blink 108 } // namespace blink
110 109
111 #endif 110 #endif
OLDNEW
« no previous file with comments | « sky/engine/public/web/WebAXObject.h ('k') | sky/engine/public/web/WebFrameClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698