OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2011, 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 29 matching lines...) Expand all Loading... |
40 #include "WebTextDirection.h" | 40 #include "WebTextDirection.h" |
41 #include "public/platform/WebCommon.h" | 41 #include "public/platform/WebCommon.h" |
42 #include "public/platform/WebFileSystem.h" | 42 #include "public/platform/WebFileSystem.h" |
43 #include "public/platform/WebFileSystemType.h" | 43 #include "public/platform/WebFileSystemType.h" |
44 #include "public/platform/WebStorageQuotaCallbacks.h" | 44 #include "public/platform/WebStorageQuotaCallbacks.h" |
45 #include "public/platform/WebStorageQuotaType.h" | 45 #include "public/platform/WebStorageQuotaType.h" |
46 #include "public/platform/WebURLError.h" | 46 #include "public/platform/WebURLError.h" |
47 #include "public/platform/WebURLRequest.h" | 47 #include "public/platform/WebURLRequest.h" |
48 #include <v8.h> | 48 #include <v8.h> |
49 | 49 |
50 // FIXME(jam): remove after roll | |
51 #define SHOW_CONTEXT_MENU_ON_WEB_FRAME_CLIENT | |
52 | |
53 namespace blink { | 50 namespace blink { |
54 | 51 |
55 class WebApplicationCacheHost; | 52 class WebApplicationCacheHost; |
56 class WebApplicationCacheHostClient; | 53 class WebApplicationCacheHostClient; |
57 class WebCachedURLRequest; | 54 class WebCachedURLRequest; |
58 class WebCookieJar; | 55 class WebCookieJar; |
59 class WebDataSource; | 56 class WebDataSource; |
60 class WebDOMEvent; | 57 class WebDOMEvent; |
61 class WebFormElement; | 58 class WebFormElement; |
62 class WebFrame; | 59 class WebFrame; |
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
392 // Send initial drawing parameters to a child frame that is being rendered o
ut of process. | 389 // Send initial drawing parameters to a child frame that is being rendered o
ut of process. |
393 virtual void initializeChildFrame(const WebRect& frameRect, float scaleFacto
r) { } | 390 virtual void initializeChildFrame(const WebRect& frameRect, float scaleFacto
r) { } |
394 | 391 |
395 protected: | 392 protected: |
396 ~WebFrameClient() { } | 393 ~WebFrameClient() { } |
397 }; | 394 }; |
398 | 395 |
399 } // namespace blink | 396 } // namespace blink |
400 | 397 |
401 #endif | 398 #endif |
OLD | NEW |