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

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

Issue 693603005: Remove lots of dead web/ classes. (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/ChromeClientImpl.cpp ('k') | sky/engine/web/WebColorSuggestion.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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 #include "platform/UserGestureIndicator.h" 47 #include "platform/UserGestureIndicator.h"
48 #include "platform/exported/WrappedResourceRequest.h" 48 #include "platform/exported/WrappedResourceRequest.h"
49 #include "platform/exported/WrappedResourceResponse.h" 49 #include "platform/exported/WrappedResourceResponse.h"
50 #include "platform/network/HTTPParsers.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/WebDOMEvent.h"
58 #include "public/web/WebDocument.h" 57 #include "public/web/WebDocument.h"
59 #include "public/web/WebFrameClient.h" 58 #include "public/web/WebFrameClient.h"
60 #include "public/web/WebNode.h" 59 #include "public/web/WebNode.h"
61 #include "public/web/WebViewClient.h" 60 #include "public/web/WebViewClient.h"
62 #include "web/WebLocalFrameImpl.h" 61 #include "web/WebLocalFrameImpl.h"
63 #include "web/WebViewImpl.h" 62 #include "web/WebViewImpl.h"
64 #include "wtf/StringExtras.h" 63 #include "wtf/StringExtras.h"
65 #include "wtf/text/CString.h" 64 #include "wtf/text/CString.h"
66 #include "wtf/text/WTFString.h" 65 #include "wtf/text/WTFString.h"
67 #include <v8.h> 66 #include <v8.h>
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 m_webFrame->client()->didLoseWebGLContext(m_webFrame, arbRobustnessConte xtLostReason); 276 m_webFrame->client()->didLoseWebGLContext(m_webFrame, arbRobustnessConte xtLostReason);
278 } 277 }
279 278
280 void FrameLoaderClientImpl::dispatchDidChangeManifest() 279 void FrameLoaderClientImpl::dispatchDidChangeManifest()
281 { 280 {
282 if (m_webFrame->client()) 281 if (m_webFrame->client())
283 m_webFrame->client()->didChangeManifest(m_webFrame); 282 m_webFrame->client()->didChangeManifest(m_webFrame);
284 } 283 }
285 284
286 } // namespace blink 285 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/web/ChromeClientImpl.cpp ('k') | sky/engine/web/WebColorSuggestion.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698