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

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

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « public/web/WebAXEnums.h ('k') | public/web/WebActiveWheelFlingParameters.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 24 matching lines...) Expand all
35 #include "../platform/WebPrivatePtr.h" 35 #include "../platform/WebPrivatePtr.h"
36 #include "../platform/WebVector.h" 36 #include "../platform/WebVector.h"
37 #include "WebAXEnums.h" 37 #include "WebAXEnums.h"
38 38
39 #if BLINK_IMPLEMENTATION 39 #if BLINK_IMPLEMENTATION
40 namespace WTF { template <typename T> class PassRefPtr; } 40 namespace WTF { template <typename T> class PassRefPtr; }
41 #endif 41 #endif
42 42
43 namespace WebCore { class AXObject; } 43 namespace WebCore { class AXObject; }
44 44
45 namespace WebKit { 45 namespace blink {
46 46
47 class WebNode; 47 class WebNode;
48 class WebDocument; 48 class WebDocument;
49 class WebString; 49 class WebString;
50 class WebURL; 50 class WebURL;
51 struct WebPoint; 51 struct WebPoint;
52 struct WebRect; 52 struct WebRect;
53 53
54 // A container for passing around a reference to AXObject. 54 // A container for passing around a reference to AXObject.
55 class WebAXObject { 55 class WebAXObject {
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 #if BLINK_IMPLEMENTATION 213 #if BLINK_IMPLEMENTATION
214 WebAXObject(const WTF::PassRefPtr<WebCore::AXObject>&); 214 WebAXObject(const WTF::PassRefPtr<WebCore::AXObject>&);
215 WebAXObject& operator=(const WTF::PassRefPtr<WebCore::AXObject>&); 215 WebAXObject& operator=(const WTF::PassRefPtr<WebCore::AXObject>&);
216 operator WTF::PassRefPtr<WebCore::AXObject>() const; 216 operator WTF::PassRefPtr<WebCore::AXObject>() const;
217 #endif 217 #endif
218 218
219 private: 219 private:
220 WebPrivatePtr<WebCore::AXObject> m_private; 220 WebPrivatePtr<WebCore::AXObject> m_private;
221 }; 221 };
222 222
223 } // namespace WebKit 223 } // namespace blink
224 224
225 #endif 225 #endif
OLDNEW
« no previous file with comments | « public/web/WebAXEnums.h ('k') | public/web/WebActiveWheelFlingParameters.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698