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

Side by Side Diff: content/renderer/render_frame_impl.h

Issue 2964503003: Move NetworkService mojom files to content/public/common. (Closed)
Patch Set: Merge Created 3 years, 5 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 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 19 matching lines...) Expand all
30 #include "build/build_config.h" 30 #include "build/build_config.h"
31 #include "content/common/accessibility_mode.h" 31 #include "content/common/accessibility_mode.h"
32 #include "content/common/associated_interface_registry_impl.h" 32 #include "content/common/associated_interface_registry_impl.h"
33 #include "content/common/download/mhtml_save_status.h" 33 #include "content/common/download/mhtml_save_status.h"
34 #include "content/common/features.h" 34 #include "content/common/features.h"
35 #include "content/common/frame.mojom.h" 35 #include "content/common/frame.mojom.h"
36 #include "content/common/frame_message_enums.h" 36 #include "content/common/frame_message_enums.h"
37 #include "content/common/host_zoom.mojom.h" 37 #include "content/common/host_zoom.mojom.h"
38 #include "content/common/renderer.mojom.h" 38 #include "content/common/renderer.mojom.h"
39 #include "content/common/unique_name_helper.h" 39 #include "content/common/unique_name_helper.h"
40 #include "content/common/url_loader_factory.mojom.h"
41 #include "content/public/common/console_message_level.h" 40 #include "content/public/common/console_message_level.h"
42 #include "content/public/common/javascript_dialog_type.h" 41 #include "content/public/common/javascript_dialog_type.h"
43 #include "content/public/common/previews_state.h" 42 #include "content/public/common/previews_state.h"
44 #include "content/public/common/referrer.h" 43 #include "content/public/common/referrer.h"
45 #include "content/public/common/renderer_preferences.h" 44 #include "content/public/common/renderer_preferences.h"
46 #include "content/public/common/request_context_type.h" 45 #include "content/public/common/request_context_type.h"
47 #include "content/public/common/stop_find_action.h" 46 #include "content/public/common/stop_find_action.h"
47 #include "content/public/common/url_loader_factory.mojom.h"
48 #include "content/public/renderer/render_frame.h" 48 #include "content/public/renderer/render_frame.h"
49 #include "content/renderer/frame_blame_context.h" 49 #include "content/renderer/frame_blame_context.h"
50 #include "content/renderer/media/media_factory.h" 50 #include "content/renderer/media/media_factory.h"
51 #include "content/renderer/mojo/blink_interface_provider_impl.h" 51 #include "content/renderer/mojo/blink_interface_provider_impl.h"
52 #include "content/renderer/renderer_webcookiejar_impl.h" 52 #include "content/renderer/renderer_webcookiejar_impl.h"
53 #include "ipc/ipc_message.h" 53 #include "ipc/ipc_message.h"
54 #include "ipc/ipc_platform_file.h" 54 #include "ipc/ipc_platform_file.h"
55 #include "media/base/routing_token_callback.h" 55 #include "media/base/routing_token_callback.h"
56 #include "mojo/public/cpp/bindings/associated_binding.h" 56 #include "mojo/public/cpp/bindings/associated_binding.h"
57 #include "mojo/public/cpp/bindings/binding.h" 57 #include "mojo/public/cpp/bindings/binding.h"
(...skipping 1362 matching lines...) Expand 10 before | Expand all | Expand 10 after
1420 std::vector<media::RoutingTokenCallback> pending_routing_token_callbacks_; 1420 std::vector<media::RoutingTokenCallback> pending_routing_token_callbacks_;
1421 1421
1422 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1422 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1423 1423
1424 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1424 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1425 }; 1425 };
1426 1426
1427 } // namespace content 1427 } // namespace content
1428 1428
1429 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1429 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698