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

Side by Side Diff: chrome/renderer/chrome_render_process_observer.cc

Issue 10828314: Move Variations stuff into variations/ directories and add OWNERS files for the variations client t… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Add OWNERS files Created 8 years, 4 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
« no previous file with comments | « chrome/common/metrics/variations_util_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "chrome/renderer/chrome_render_process_observer.h" 5 #include "chrome/renderer/chrome_render_process_observer.h"
6 6
7 #include "base/allocator/allocator_extension.h" 7 #include "base/allocator/allocator_extension.h"
8 #include "base/bind.h" 8 #include "base/bind.h"
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/file_util.h" 10 #include "base/file_util.h"
11 #include "base/message_loop.h" 11 #include "base/message_loop.h"
12 #include "base/memory/weak_ptr.h" 12 #include "base/memory/weak_ptr.h"
13 #include "base/metrics/field_trial.h" 13 #include "base/metrics/field_trial.h"
14 #include "base/metrics/histogram.h" 14 #include "base/metrics/histogram.h"
15 #include "base/metrics/statistics_recorder.h" 15 #include "base/metrics/statistics_recorder.h"
16 #include "base/native_library.h" 16 #include "base/native_library.h"
17 #include "base/path_service.h" 17 #include "base/path_service.h"
18 #include "base/process_util.h" 18 #include "base/process_util.h"
19 #include "base/threading/platform_thread.h" 19 #include "base/threading/platform_thread.h"
20 #include "chrome/common/child_process_logging.h" 20 #include "chrome/common/child_process_logging.h"
21 #include "chrome/common/chrome_paths.h" 21 #include "chrome/common/chrome_paths.h"
22 #include "chrome/common/chrome_switches.h" 22 #include "chrome/common/chrome_switches.h"
23 #include "chrome/common/extensions/extension_localization_peer.h" 23 #include "chrome/common/extensions/extension_localization_peer.h"
24 #include "chrome/common/metrics/variations_util.h" 24 #include "chrome/common/metrics/variations/variations_util.h"
25 #include "chrome/common/net/net_resource_provider.h" 25 #include "chrome/common/net/net_resource_provider.h"
26 #include "chrome/common/render_messages.h" 26 #include "chrome/common/render_messages.h"
27 #include "chrome/renderer/chrome_content_renderer_client.h" 27 #include "chrome/renderer/chrome_content_renderer_client.h"
28 #include "chrome/renderer/content_settings_observer.h" 28 #include "chrome/renderer/content_settings_observer.h"
29 #include "chrome/renderer/security_filter_peer.h" 29 #include "chrome/renderer/security_filter_peer.h"
30 #include "content/public/common/resource_dispatcher_delegate.h" 30 #include "content/public/common/resource_dispatcher_delegate.h"
31 #include "content/public/renderer/render_thread.h" 31 #include "content/public/renderer/render_thread.h"
32 #include "content/public/renderer/render_view_visitor.h" 32 #include "content/public/renderer/render_view_visitor.h"
33 #include "content/public/renderer/render_view.h" 33 #include "content/public/renderer/render_view.h"
34 #include "crypto/nss_util.h" 34 #include "crypto/nss_util.h"
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 if (clear_cache_pending_) { 357 if (clear_cache_pending_) {
358 clear_cache_pending_ = false; 358 clear_cache_pending_ = false;
359 WebCache::clear(); 359 WebCache::clear();
360 } 360 }
361 } 361 }
362 362
363 const RendererContentSettingRules* 363 const RendererContentSettingRules*
364 ChromeRenderProcessObserver::content_setting_rules() const { 364 ChromeRenderProcessObserver::content_setting_rules() const {
365 return &content_setting_rules_; 365 return &content_setting_rules_;
366 } 366 }
OLDNEW
« no previous file with comments | « chrome/common/metrics/variations_util_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698