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

Side by Side Diff: chrome/renderer/chrome_render_thread_observer.h

Issue 2628323004: Fix a copy/pasto. (Closed)
Patch Set: Created 3 years, 11 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
« no previous file with comments | « no previous file | chrome/renderer/chrome_render_thread_observer.cc » ('j') | 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 #ifndef CHROME_RENDERER_CHROME_RENDER_THREAD_OBSERVER_H_ 5 #ifndef CHROME_RENDERER_CHROME_RENDER_THREAD_OBSERVER_H_
6 #define CHROME_RENDERER_CHROME_RENDER_THREAD_OBSERVER_H_ 6 #define CHROME_RENDERER_CHROME_RENDER_THREAD_OBSERVER_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 10
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 58
59 // base::FieldTrialList::Observer: 59 // base::FieldTrialList::Observer:
60 void OnFieldTrialGroupFinalized(const std::string& trial_name, 60 void OnFieldTrialGroupFinalized(const std::string& trial_name,
61 const std::string& group_name) override; 61 const std::string& group_name) override;
62 62
63 // chrome::mojom::RendererConfiguration: 63 // chrome::mojom::RendererConfiguration:
64 void SetInitialConfiguration(bool is_incognito_process) override; 64 void SetInitialConfiguration(bool is_incognito_process) override;
65 void SetContentSettingRules( 65 void SetContentSettingRules(
66 const RendererContentSettingRules& rules) override; 66 const RendererContentSettingRules& rules) override;
67 67
68 void OnRendererInterfaceRequest( 68 void OnRendererConfigurationAssociatedRequest(
69 chrome::mojom::RendererConfigurationAssociatedRequest request); 69 chrome::mojom::RendererConfigurationAssociatedRequest request);
70 70
71 void OnSetFieldTrialGroup(const std::string& trial_name, 71 void OnSetFieldTrialGroup(const std::string& trial_name,
72 const std::string& group_name); 72 const std::string& group_name);
73 73
74 static bool is_incognito_process_; 74 static bool is_incognito_process_;
75 std::unique_ptr<content::ResourceDispatcherDelegate> resource_delegate_; 75 std::unique_ptr<content::ResourceDispatcherDelegate> resource_delegate_;
76 RendererContentSettingRules content_setting_rules_; 76 RendererContentSettingRules content_setting_rules_;
77 variations::ChildProcessFieldTrialSyncer field_trial_syncer_; 77 variations::ChildProcessFieldTrialSyncer field_trial_syncer_;
78 78
79 std::unique_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_; 79 std::unique_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_;
80 80
81 mojo::AssociatedBinding<chrome::mojom::RendererConfiguration> 81 mojo::AssociatedBinding<chrome::mojom::RendererConfiguration>
82 renderer_configuration_binding_; 82 renderer_configuration_binding_;
83 83
84 base::WeakPtrFactory<ChromeRenderThreadObserver> weak_factory_; 84 base::WeakPtrFactory<ChromeRenderThreadObserver> weak_factory_;
85 85
86 DISALLOW_COPY_AND_ASSIGN(ChromeRenderThreadObserver); 86 DISALLOW_COPY_AND_ASSIGN(ChromeRenderThreadObserver);
87 }; 87 };
88 88
89 #endif // CHROME_RENDERER_CHROME_RENDER_THREAD_OBSERVER_H_ 89 #endif // CHROME_RENDERER_CHROME_RENDER_THREAD_OBSERVER_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/renderer/chrome_render_thread_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698