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

Side by Side Diff: blimp/client/feature/settings_feature.h

Issue 1922613003: Add blimp to root GN check_targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Flipped the order of the conditional in //content/app/BUILD.gn Created 4 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 BLIMP_CLIENT_FEATURE_SETTINGS_FEATURE_H_ 5 #ifndef BLIMP_CLIENT_FEATURE_SETTINGS_FEATURE_H_
6 #define BLIMP_CLIENT_FEATURE_SETTINGS_FEATURE_H_ 6 #define BLIMP_CLIENT_FEATURE_SETTINGS_FEATURE_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "blimp/client/blimp_client_export.h"
10 #include "blimp/net/blimp_message_processor.h" 9 #include "blimp/net/blimp_message_processor.h"
11 10
12 namespace blimp { 11 namespace blimp {
13 namespace client { 12 namespace client {
14 13
15 // The feature is used to send global settings to the engine. 14 // The feature is used to send global settings to the engine.
16 class BLIMP_CLIENT_EXPORT SettingsFeature : public BlimpMessageProcessor { 15 class SettingsFeature : public BlimpMessageProcessor {
17 public: 16 public:
18 SettingsFeature(); 17 SettingsFeature();
19 ~SettingsFeature() override; 18 ~SettingsFeature() override;
20 19
21 // Set the BlimpMessageProcessor that will be used to send 20 // Set the BlimpMessageProcessor that will be used to send
22 // BlimpMessage::SETTINGS messages to the engine. 21 // BlimpMessage::SETTINGS messages to the engine.
23 void set_outgoing_message_processor( 22 void set_outgoing_message_processor(
24 std::unique_ptr<BlimpMessageProcessor> processor); 23 std::unique_ptr<BlimpMessageProcessor> processor);
25 24
26 void SetRecordWholeDocument(bool record_whole_document); 25 void SetRecordWholeDocument(bool record_whole_document);
(...skipping 10 matching lines...) Expand all
37 // Used to avoid sending unnecessary messages to engine. 36 // Used to avoid sending unnecessary messages to engine.
38 bool record_whole_document_; 37 bool record_whole_document_;
39 38
40 DISALLOW_COPY_AND_ASSIGN(SettingsFeature); 39 DISALLOW_COPY_AND_ASSIGN(SettingsFeature);
41 }; 40 };
42 41
43 } // namespace client 42 } // namespace client
44 } // namespace blimp 43 } // namespace blimp
45 44
46 #endif // BLIMP_CLIENT_FEATURE_SETTINGS_FEATURE_H_ 45 #endif // BLIMP_CLIENT_FEATURE_SETTINGS_FEATURE_H_
OLDNEW
« no previous file with comments | « blimp/client/feature/render_widget_feature.h ('k') | blimp/client/feature/tab_control_feature.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698