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

Side by Side Diff: blimp/client/core/settings/settings_feature.cc

Issue 2292723003: Move remaining Blimp feature code to core. (Closed)
Patch Set: Fix build break Created 4 years, 3 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 #include "blimp/client/feature/settings_feature.h" 5 #include "blimp/client/core/settings/settings_feature.h"
6 6
7 #include "blimp/common/create_blimp_message.h" 7 #include "blimp/common/create_blimp_message.h"
8 #include "blimp/common/proto/blimp_message.pb.h" 8 #include "blimp/common/proto/blimp_message.pb.h"
9 #include "blimp/common/proto/settings.pb.h" 9 #include "blimp/common/proto/settings.pb.h"
10 #include "net/base/net_errors.h" 10 #include "net/base/net_errors.h"
11 11
12 namespace blimp { 12 namespace blimp {
13 namespace client { 13 namespace client {
14 14
15 SettingsFeature::SettingsFeature() : record_whole_document_(false) {} 15 SettingsFeature::SettingsFeature() : record_whole_document_(false) {}
(...skipping 28 matching lines...) Expand all
44 44
45 void SettingsFeature::ProcessMessage(std::unique_ptr<BlimpMessage> message, 45 void SettingsFeature::ProcessMessage(std::unique_ptr<BlimpMessage> message,
46 const net::CompletionCallback& callback) { 46 const net::CompletionCallback& callback) {
47 // We don't receive any messages from the engine yet. 47 // We don't receive any messages from the engine yet.
48 NOTREACHED() << "Invalid settings message received from the engine."; 48 NOTREACHED() << "Invalid settings message received from the engine.";
49 callback.Run(net::OK); 49 callback.Run(net::OK);
50 } 50 }
51 51
52 } // namespace client 52 } // namespace client
53 } // namespace blimp 53 } // namespace blimp
OLDNEW
« no previous file with comments | « blimp/client/core/settings/settings_feature.h ('k') | blimp/client/feature/compositor/blimp_compositor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698