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

Side by Side Diff: remoting/host/setup/gaia_oauth_client.cc

Issue 1736633002: remoting: Add out-of-line copy ctors for complex classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 | « remoting/host/setup/gaia_oauth_client.h ('k') | remoting/protocol/pairing_registry.h » ('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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "remoting/host/setup/gaia_oauth_client.h" 5 #include "remoting/host/setup/gaia_oauth_client.h"
6 6
7 #include "base/callback_helpers.h" 7 #include "base/callback_helpers.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 9
10 namespace { 10 namespace {
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 const gaia::OAuthClientInfo& oauth_client_info, 87 const gaia::OAuthClientInfo& oauth_client_info,
88 const std::string& auth_code, 88 const std::string& auth_code,
89 bool need_user_email, 89 bool need_user_email,
90 CompletionCallback on_done) { 90 CompletionCallback on_done) {
91 this->oauth_client_info = oauth_client_info; 91 this->oauth_client_info = oauth_client_info;
92 this->auth_code = auth_code; 92 this->auth_code = auth_code;
93 this->need_user_email = need_user_email; 93 this->need_user_email = need_user_email;
94 this->on_done = on_done; 94 this->on_done = on_done;
95 } 95 }
96 96
97 GaiaOAuthClient::Request::Request(const Request& other) = default;
98
97 GaiaOAuthClient::Request::~Request() { 99 GaiaOAuthClient::Request::~Request() {
98 } 100 }
99 101
100 } // namespace remoting 102 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/host/setup/gaia_oauth_client.h ('k') | remoting/protocol/pairing_registry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698