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

Side by Side Diff: third_party/WebKit/Source/core/page/PagePopup.h

Issue 2883813005: Reland of name AXObject to AXObjectImpl in modules/ and web/ (Closed)
Patch Set: Created 3 years, 7 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
OLDNEW
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/page/ChromeClient.h ('k') | third_party/WebKit/Source/modules/accessibility/AXARIAGrid.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698