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

Side by Side Diff: sky/engine/web/FrameLoaderClientImpl.cpp

Issue 726133002: Use root-relative V8 includes (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/web/DEPS ('k') | sky/engine/web/Sky.cpp » ('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, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2011 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 24 matching lines...) Expand all
35 #include "bindings/core/v8/ScriptController.h" 35 #include "bindings/core/v8/ScriptController.h"
36 #include "core/dom/Document.h" 36 #include "core/dom/Document.h"
37 #include "core/events/MouseEvent.h" 37 #include "core/events/MouseEvent.h"
38 #include "core/frame/FrameView.h" 38 #include "core/frame/FrameView.h"
39 #include "core/frame/Settings.h" 39 #include "core/frame/Settings.h"
40 #include "core/html/HTMLIFrameElement.h" 40 #include "core/html/HTMLIFrameElement.h"
41 #include "core/page/Chrome.h" 41 #include "core/page/Chrome.h"
42 #include "core/page/EventHandler.h" 42 #include "core/page/EventHandler.h"
43 #include "core/page/Page.h" 43 #include "core/page/Page.h"
44 #include "core/rendering/HitTestResult.h" 44 #include "core/rendering/HitTestResult.h"
45 #include "platform/exported/WrappedResourceRequest.h"
46 #include "platform/exported/WrappedResourceResponse.h"
45 #include "platform/MIMETypeRegistry.h" 47 #include "platform/MIMETypeRegistry.h"
48 #include "platform/network/HTTPParsers.h"
46 #include "platform/RuntimeEnabledFeatures.h" 49 #include "platform/RuntimeEnabledFeatures.h"
47 #include "platform/UserGestureIndicator.h" 50 #include "platform/UserGestureIndicator.h"
48 #include "platform/exported/WrappedResourceRequest.h"
49 #include "platform/exported/WrappedResourceResponse.h"
50 #include "platform/network/HTTPParsers.h"
51 #include "public/platform/Platform.h" 51 #include "public/platform/Platform.h"
52 #include "public/platform/WebMimeRegistry.h" 52 #include "public/platform/WebMimeRegistry.h"
53 #include "public/platform/WebURL.h" 53 #include "public/platform/WebURL.h"
54 #include "public/platform/WebURLError.h" 54 #include "public/platform/WebURLError.h"
55 #include "public/platform/WebVector.h" 55 #include "public/platform/WebVector.h"
56 #include "public/web/WebCachedURLRequest.h" 56 #include "public/web/WebCachedURLRequest.h"
57 #include "public/web/WebDocument.h" 57 #include "public/web/WebDocument.h"
58 #include "public/web/WebFrameClient.h" 58 #include "public/web/WebFrameClient.h"
59 #include "public/web/WebNode.h" 59 #include "public/web/WebNode.h"
60 #include "public/web/WebViewClient.h" 60 #include "public/web/WebViewClient.h"
61 #include "v8/include/v8.h"
61 #include "web/WebLocalFrameImpl.h" 62 #include "web/WebLocalFrameImpl.h"
62 #include "web/WebViewImpl.h" 63 #include "web/WebViewImpl.h"
63 #include "wtf/StringExtras.h" 64 #include "wtf/StringExtras.h"
64 #include "wtf/text/CString.h" 65 #include "wtf/text/CString.h"
65 #include "wtf/text/WTFString.h" 66 #include "wtf/text/WTFString.h"
66 #include <v8.h>
67 67
68 namespace blink { 68 namespace blink {
69 69
70 FrameLoaderClientImpl::FrameLoaderClientImpl(WebLocalFrameImpl* frame) 70 FrameLoaderClientImpl::FrameLoaderClientImpl(WebLocalFrameImpl* frame)
71 : m_webFrame(frame) 71 : m_webFrame(frame)
72 { 72 {
73 } 73 }
74 74
75 FrameLoaderClientImpl::~FrameLoaderClientImpl() 75 FrameLoaderClientImpl::~FrameLoaderClientImpl()
76 { 76 {
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 m_webFrame->client()->didLoseWebGLContext(m_webFrame, arbRobustnessConte xtLostReason); 278 m_webFrame->client()->didLoseWebGLContext(m_webFrame, arbRobustnessConte xtLostReason);
279 } 279 }
280 280
281 void FrameLoaderClientImpl::dispatchDidChangeManifest() 281 void FrameLoaderClientImpl::dispatchDidChangeManifest()
282 { 282 {
283 if (m_webFrame->client()) 283 if (m_webFrame->client())
284 m_webFrame->client()->didChangeManifest(m_webFrame); 284 m_webFrame->client()->didChangeManifest(m_webFrame);
285 } 285 }
286 286
287 } // namespace blink 287 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/web/DEPS ('k') | sky/engine/web/Sky.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698