OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 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 20 matching lines...) Expand all Loading... |
31 #ifndef PagePopup_h | 31 #ifndef PagePopup_h |
32 #define PagePopup_h | 32 #define PagePopup_h |
33 | 33 |
34 #include "platform/wtf/Forward.h" | 34 #include "platform/wtf/Forward.h" |
35 | 35 |
36 // To avoid conflicts with the CreateWindow macro from the Windows SDK... | 36 // To avoid conflicts with the CreateWindow macro from the Windows SDK... |
37 #undef PostMessage | 37 #undef PostMessage |
38 | 38 |
39 namespace blink { | 39 namespace blink { |
40 | 40 |
41 class AXObject; | 41 class AXObjectImpl; |
42 class IntRect; | 42 class IntRect; |
43 | 43 |
44 // A PagePopup object is created by ChromeClient::openPagePopup(), and deleted | 44 // A PagePopup object is created by ChromeClient::openPagePopup(), and deleted |
45 // by ChromeClient::closePagePopup(). | 45 // by ChromeClient::closePagePopup(). |
46 class PagePopup { | 46 class PagePopup { |
47 public: | 47 public: |
48 virtual AXObject* RootAXObject() = 0; | 48 virtual AXObjectImpl* RootAXObject() = 0; |
49 virtual void SetWindowRect(const IntRect&) = 0; | 49 virtual void SetWindowRect(const IntRect&) = 0; |
50 virtual void PostMessage(const String& message) = 0; | 50 virtual void PostMessage(const String& message) = 0; |
51 | 51 |
52 protected: | 52 protected: |
53 virtual ~PagePopup() {} | 53 virtual ~PagePopup() {} |
54 }; | 54 }; |
55 | 55 |
56 } // namespace blink | 56 } // namespace blink |
57 #endif | 57 #endif |
OLD | NEW |