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

Side by Side Diff: trunk/src/content/browser/renderer_host/render_message_filter.h

Issue 14985007: Revert 198844 "Move sequenced_task_runner to base/task" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_BROWSER_RENDERER_HOST_RENDER_MESSAGE_FILTER_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_MESSAGE_FILTER_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_MESSAGE_FILTER_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_MESSAGE_FILTER_H_
7 7
8 #if defined(OS_WIN) 8 #if defined(OS_WIN)
9 #include <windows.h> 9 #include <windows.h>
10 #endif 10 #endif
11 11
12 #include <set> 12 #include <set>
13 #include <string> 13 #include <string>
14 #include <vector> 14 #include <vector>
15 15
16 #include "base/files/file_path.h" 16 #include "base/files/file_path.h"
17 #include "base/memory/linked_ptr.h" 17 #include "base/memory/linked_ptr.h"
18 #include "base/sequenced_task_runner_helpers.h"
18 #include "base/shared_memory.h" 19 #include "base/shared_memory.h"
19 #include "base/string16.h" 20 #include "base/string16.h"
20 #include "base/task/sequenced_task_runner_helpers.h"
21 #include "build/build_config.h" 21 #include "build/build_config.h"
22 #include "content/common/pepper_renderer_instance_data.h" 22 #include "content/common/pepper_renderer_instance_data.h"
23 #include "content/public/browser/browser_message_filter.h" 23 #include "content/public/browser/browser_message_filter.h"
24 #include "content/public/common/three_d_api_types.h" 24 #include "content/public/common/three_d_api_types.h"
25 #include "media/audio/audio_parameters.h" 25 #include "media/audio/audio_parameters.h"
26 #include "media/base/channel_layout.h" 26 #include "media/base/channel_layout.h"
27 #include "net/cookies/canonical_cookie.h" 27 #include "net/cookies/canonical_cookie.h"
28 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupType.h" 28 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupType.h"
29 #include "ui/gfx/native_widget_types.h" 29 #include "ui/gfx/native_widget_types.h"
30 #include "ui/surface/transport_dib.h" 30 #include "ui/surface/transport_dib.h"
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 scoped_ptr<base::ProcessMetrics> process_metrics_; 302 scoped_ptr<base::ProcessMetrics> process_metrics_;
303 303
304 MediaInternals* media_internals_; 304 MediaInternals* media_internals_;
305 305
306 DISALLOW_COPY_AND_ASSIGN(RenderMessageFilter); 306 DISALLOW_COPY_AND_ASSIGN(RenderMessageFilter);
307 }; 307 };
308 308
309 } // namespace content 309 } // namespace content
310 310
311 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_MESSAGE_FILTER_H_ 311 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_MESSAGE_FILTER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698